2009-01-23 05:12:23 +00:00
|
|
|
## Copyright (c) 2001-2009 International Business Machines
|
2003-06-04 01:06:48 +00:00
|
|
|
## Corporation and others. All Rights Reserved.
|
2005-07-18 06:49:18 +00:00
|
|
|
PACKAGE_NAME = uresb
|
|
|
|
TARGETS = en.res root.res sr.res
|
2009-01-23 05:12:23 +00:00
|
|
|
|
|
|
|
!IF "$(CFG)" == "x64\Release" || "$(CFG)" == "x64\Debug"
|
|
|
|
GENRB = ..\..\..\bin64\genrb.exe
|
|
|
|
!ELSE
|
2001-12-05 17:54:57 +00:00
|
|
|
GENRB = ..\..\..\bin\genrb.exe
|
2009-01-23 05:12:23 +00:00
|
|
|
!ENDIF
|
|
|
|
|
2005-07-18 06:49:18 +00:00
|
|
|
GENRBOPT = -s . -d .
|
2000-09-11 05:18:43 +00:00
|
|
|
|
|
|
|
all : $(TARGETS)
|
|
|
|
@echo All targets are up to date
|
|
|
|
|
|
|
|
clean :
|
|
|
|
-erase $(TARGETS)
|
|
|
|
|
2005-07-18 06:49:18 +00:00
|
|
|
en.res : en.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
2005-07-18 06:49:18 +00:00
|
|
|
root.res : root.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) $?
|
|
|
|
|
2005-07-18 06:49:18 +00:00
|
|
|
sr.res : sr.txt
|
2000-09-11 05:18:43 +00:00
|
|
|
$(GENRB) $(GENRBOPT) --encoding cp1251 $?
|
|
|
|
|