]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/uresb/Makefile
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / samples / uresb / Makefile
index 43120e15e936c37d44fa79d516fd5737a15d778c..488cdb7400d0219303925997dc493ff888e11f19 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2000-2004 IBM, Inc. and others
+# Copyright (c) 2000-2005 IBM, Inc. and others
 # conversion sample code
 # Usage:
 #  - configure, build, install ICU
@@ -16,13 +16,13 @@ ifeq ($(strip $(ICU_PATH)),)
   ICU_PATH=$(ICU_DEFAULT_PATH)
 endif
 
-GENRBOPT = -s. -d. --package-name $(PKG)
+GENRBOPT = -s. -d.
 
 # Name of your target
 TARGET=uresb
 PKG=$(TARGET)
 RES_SRC=root.txt en.txt sr.txt
-RESOURCES=$(RES_SRC:%.txt=$(PKG)_%.res)
+RESOURCES=$(RES_SRC:%.txt=%.res)
 
 # All object files (C or C++)
 OBJECTS=uresb.o
@@ -45,16 +45,16 @@ LDFLAGS += -L$(ICU_PATH)/source/tools/toolutil $(shell icu-config --ldflags-tool
 
 distclean clean:
        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
-       -$(RMV) $(OBJECTS) $(TARGET)
+       -$(RMV) $(OBJECTS) $(TARGET) $(RESOURCES)
 
 
 ## resources
-$(PKG)_%.res: %.txt
+%.res: %.txt
        @echo "generating $@"
        $(GENRB) $(GENRBOPT) $^
 
 ## Special for a special codepage
-$(PKG)_sr.res : sr.txt
+sr.res : sr.txt
        @echo "generating $@"
        $(GENRB) $(GENRBOPT) -e cp1251 $?
 
@@ -75,14 +75,3 @@ $(TARGET).report: check $(TARGET).cpp
 
 
 
-
-
-
-
-
-
-
-
-
-
-