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