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