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