]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | ## Copyright (c) 2001-2003 International Business Machines |
2 | ## Corporation and others. All Rights Reserved. | |
3 | TARGETS = uresb_en.res uresb_root.res uresb_sr.res | |
4 | GENRB = ..\..\..\bin\genrb.exe | |
5 | GENRBOPT = -s. -d. --package-name uresb | |
6 | ||
7 | all : $(TARGETS) | |
8 | @echo All targets are up to date | |
9 | ||
10 | clean : | |
11 | -erase $(TARGETS) | |
12 | ||
13 | ||
14 | uresb_en.res : en.txt | |
15 | $(GENRB) $(GENRBOPT) $? | |
16 | ||
17 | uresb_root.res : root.txt | |
18 | $(GENRB) $(GENRBOPT) $? | |
19 | ||
20 | uresb_sr.res : sr.txt | |
21 | $(GENRB) $(GENRBOPT) --encoding cp1251 $? | |
22 |