2000-09-11 05:18:43 +00:00
|
|
|
TARGETS = en.res root.res sr.res
|
2001-12-05 17:54:57 +00:00
|
|
|
GENRB = ..\..\..\bin\genrb.exe
|
2000-09-11 05:18:43 +00:00
|
|
|
GENRBOPT = -s. -d.
|
|
|
|
|
|
|
|
all : $(TARGETS)
|
|
|
|
@echo All targets are up to date
|
|
|
|
|
|
|
|
clean :
|
|
|
|
-erase $(TARGETS)
|
|
|
|
|
|
|
|
|
|
|
|
en.res : en.txt
|
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
|
|
|
root.res : root.txt
|
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
|
|
|
sr.res : sr.txt
|
|
|
|
$(GENRB) $(GENRBOPT) --encoding cp1251 $?
|
|
|
|
|