2003-06-04 01:06:48 +00:00
|
|
|
## Copyright (c) 2001-2003 International Business Machines
|
|
|
|
## Corporation and others. All Rights Reserved.
|
2002-08-13 21:42:16 +00:00
|
|
|
TARGETS = uresb_en.res uresb_root.res uresb_sr.res
|
2001-12-05 17:54:57 +00:00
|
|
|
GENRB = ..\..\..\bin\genrb.exe
|
2002-08-13 21:42:16 +00:00
|
|
|
GENRBOPT = -s. -d. --package-name uresb
|
2000-09-11 05:18:43 +00:00
|
|
|
|
|
|
|
all : $(TARGETS)
|
|
|
|
@echo All targets are up to date
|
|
|
|
|
|
|
|
clean :
|
|
|
|
-erase $(TARGETS)
|
|
|
|
|
|
|
|
|
2002-08-13 21:42:16 +00:00
|
|
|
uresb_en.res : en.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
2002-08-13 21:42:16 +00:00
|
|
|
uresb_root.res : root.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
2002-08-13 21:42:16 +00:00
|
|
|
uresb_sr.res : sr.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) --encoding cp1251 $?
|
|
|
|
|