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