1 ## Copyright (c) 2001-2009 International Business Machines 2 ## Corporation and others. All Rights Reserved. 3 PACKAGE_NAME = uresb 4 TARGETS = en.res root.res sr.res 5 6 !IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug" 7 GENRB = ..\..\..\bin64\genrb.exe 8 !ELSE 9 GENRB = ..\..\..\bin\genrb.exe 10 !ENDIF 11 12 GENRBOPT = -s . -d . 13 14 all : $(TARGETS) 15 @echo All targets are up to date 16 17 clean : 18 -erase $(TARGETS) 19 20 en.res : en.txt 21 $(GENRB) $(GENRBOPT) $? 22 23 root.res : root.txt 24 $(GENRB) $(GENRBOPT) $? 25 26 sr.res : sr.txt 27 $(GENRB) $(GENRBOPT) --encoding cp1251 $? 28 29