]>
Commit | Line | Data |
---|---|---|
73c04bcf | 1 | ## Copyright (c) 2001-2005 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 | |
b75a7d8f | 5 | GENRB = ..\..\..\bin\genrb.exe |
73c04bcf | 6 | GENRBOPT = -s . -d . |
b75a7d8f A |
7 | |
8 | all : $(TARGETS) | |
9 | @echo All targets are up to date | |
10 | ||
11 | clean : | |
12 | -erase $(TARGETS) | |
13 | ||
73c04bcf | 14 | en.res : en.txt |
b75a7d8f A |
15 | $(GENRB) $(GENRBOPT) $? |
16 | ||
73c04bcf | 17 | root.res : root.txt |
b75a7d8f A |
18 | $(GENRB) $(GENRBOPT) $? |
19 | ||
73c04bcf | 20 | sr.res : sr.txt |
b75a7d8f A |
21 | $(GENRB) $(GENRBOPT) --encoding cp1251 $? |
22 |