Home | History | Annotate | Download | only in uresb
      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.
      6 PACKAGE_NAME = uresb
      7 TARGETS = en.res root.res sr.res
      8 
      9 !IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
     10 GENRB = ..\..\..\bin64\genrb.exe
     11 !ELSE
     12 GENRB = ..\..\..\bin\genrb.exe
     13 !ENDIF
     14 
     15 GENRBOPT = -s . -d .
     16 
     17 all : $(TARGETS)
     18     @echo All targets are up to date
     19 
     20 clean : 
     21     -erase $(TARGETS)
     22 
     23 en.res : en.txt
     24     $(GENRB) $(GENRBOPT) $?
     25 
     26 root.res : root.txt
     27     $(GENRB) $(GENRBOPT) $?
     28 
     29 sr.res : sr.txt
     30     $(GENRB) $(GENRBOPT) --encoding cp1251 $?
     31 
     32