]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/samples/ufortune/resources/Makefile
ICU-8.11.tar.gz
[apple/icu.git] / icuSources / samples / ufortune / resources / Makefile
index b7d28998411da5426208a0ff9c5e8e80757aa23d..998a7a82557edaaeebc1fca8e87a3bef2dafb570 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2001-2002 IBM, Inc. and others
+# Copyright (c) 2001-2006 IBM, Inc. and others
 #
 # File
 #    icu/source/samples/ufortune/resources/Makefile
 #
 # File
 #    icu/source/samples/ufortune/resources/Makefile
@@ -28,17 +28,22 @@ include ../../defs.mk
 
 # No conventional target - this dir is resources only.
 TARGET=
 
 # No conventional target - this dir is resources only.
 TARGET=
-CLEANFILES += *.mak *.[co] *.lst *.a *.$(SO) $(RESFILES) *.ao README*resources.txt
+CLEANFILES += *.[co] *.lst $(RESNAME)_*.mak $(RESNAME).dat $(RESFILES) *.ao README*resources.txt
 
 include ../fortunedefs.mk
 
 # target file for resource bundle - this must be set, or 'make all' won't
 # build any resources.
 
 include ../fortunedefs.mk
 
 # target file for resource bundle - this must be set, or 'make all' won't
 # build any resources.
+ifeq ($(RESMODE),dll)
 RESTARGET=lib$(RESNAME).$(SO)
 RESTARGET=lib$(RESNAME).$(SO)
+endif
+ifeq ($(RESMODE),static)
+RESTARGET=lib$(RESNAME).a
+endif
 
 # Resource files.  Add new ones for additional locales here.
 # keep in sync with the file RESLIST
 
 # Resource files.  Add new ones for additional locales here.
 # keep in sync with the file RESLIST
-RESFILES=$(RESNAME)_root.res $(RESNAME)_es.res
+RESFILES=root.res es.res
 
 # list of resource bundles  - keep in sync with RESFILES
 RESLIST=res-file-list.txt
 
 # list of resource bundles  - keep in sync with RESFILES
 RESLIST=res-file-list.txt
@@ -49,6 +54,7 @@ include ../../rules.mk
 # for installing the library
 install: res-install
 
 # for installing the library
 install: res-install
 
-$(RESNAME)_es.res: es.txt
+es.res: es.txt
        @echo "generating $@"
        @echo "generating $@"
-       $(GENRB) $(GENRBOPT) -e latin-1 $^
+       $(GENRB) $(GENRBOPT) $^
+