]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/pkgdata/Makefile.in
ICU-8.11.1.tar.gz
[apple/icu.git] / icuSources / tools / pkgdata / Makefile.in
index 826f496c1caa5ab58f1c253a5c6c2a9a26cd0f07..9818e5df5f808be5f3e10fd9b2e0b8dc8b702a35 100644 (file)
@@ -1,5 +1,5 @@
 ## Makefile.in for ICU - tools/pkgdata
 ## Makefile.in for ICU - tools/pkgdata
-## Copyright (c) 1999-2003, International Business Machines Corporation and
+## Copyright (c) 1999-2005, International Business Machines Corporation and
 ## others. All Rights Reserved.
 ## Steven R. Loomis
 
 ## others. All Rights Reserved.
 ## Steven R. Loomis
 
@@ -14,32 +14,36 @@ include $(top_builddir)/icudefs.mk
 ## Build directory information
 subdir = tools/pkgdata
 
 ## Build directory information
 subdir = tools/pkgdata
 
-##
+TARGET_STUB_NAME = pkgdata
 
 SECTION = 1
 
 
 SECTION = 1
 
-MANX_FILES = $(TARGET:$(EXEEXT)=).$(SECTION)
-
-ALL_MAN_FILES = $(MANX_FILES)
+MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
 
 ## Extra files to remove for 'make clean'
 
 ## Extra files to remove for 'make clean'
-CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES) mkmap.tmp $(ALL_MAN_FILES)
+CLEANFILES = *~ $(DEPS) $(MAN_FILES)
+
+ifneq ($(PKGDATA_DEFS),)
+DEFS += $(PKGDATA_DEFS)
+endif
 
 ## Target information
 
 ## Target information
-TARGET = pkgdata$(EXEEXT)
+TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
 
 
-CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil
+ifneq ($(top_builddir),$(top_srcdir))
+CPPFLAGS += -I$(top_builddir)/common
+endif
+CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
 DEFS += -DUDATA_SO_SUFFIX=\".$(SO)\" -DSTATIC_O=\"$(STATIC_O)\"
 DEFS += -DUDATA_SO_SUFFIX=\".$(SO)\" -DSTATIC_O=\"$(STATIC_O)\"
-LIBS = $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
+LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
 
 
-OBJECTS = pkgdata.o pkgtypes.o gmake.o dllmode.o cmnmode.o filemode.o sttcmode.o winmode.o
+OBJECTS = pkgdata.o pkgtypes.o make.o dllmode.o cmnmode.o filemode.o sttcmode.o winmode.o
 
 DEPS = $(OBJECTS:.o=.d)
 
 ## List of phony targets
 
 DEPS = $(OBJECTS:.o=.d)
 
 ## List of phony targets
-.PHONY : all all-local install install-local clean clean-local         \
-distclean distclean-local dist dist-local check        \
-check-local install-man install-manx
+.PHONY : all all-local install install-local clean clean-local \
+distclean distclean-local dist dist-local check check-local install-man
 
 ## Clear suffix list
 .SUFFIXES :
 
 ## Clear suffix list
 .SUFFIXES :
@@ -52,21 +56,16 @@ distclean : distclean-local
 dist: dist-local
 check: all check-local
 
 dist: dist-local
 check: all check-local
 
-all-local: $(TARGET) $(RES_FILES) $(TRANSLIT_RES) $(TEST_FILES) $(ALL_MAN_FILES)
+all-local: $(TARGET) $(MAN_FILES)
 
 install-local: all-local install-man
        $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
 
 install-local: all-local install-man
        $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
-       $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)/$(TARGET)
+       $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
 
 
-# man page
-install-man: install-manx
-install-manx: $(MANX_FILES)
+install-man: $(MAN_FILES)
        $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
        $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
 
        $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
        $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
 
-%.$(SECTION): $(srcdir)/%.$(SECTION).in
-       cd $(top_builddir) \
-        && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
 dist-local:
 
 
 dist-local:
 
@@ -83,12 +82,14 @@ Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
        cd $(top_builddir) \
         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
        cd $(top_builddir) \
         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
+$(TARGET) : $(OBJECTS)
+       $(LINK.c) $(OUTOPT)$@ $^ $(LIBS) 
+
 
 
+%.$(SECTION): $(srcdir)/%.$(SECTION).in
        cd $(top_builddir) \
        cd $(top_builddir) \
-       && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+        && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
 
-$(TARGET) : $(OBJECTS)
-       $(LINK.c) $(OUTOPT)$@ $^ $(LIBS) 
 
 ifeq (,$(MAKECMDGOALS))
 -include $(DEPS)
 
 ifeq (,$(MAKECMDGOALS))
 -include $(DEPS)
@@ -97,3 +98,4 @@ ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
 -include $(DEPS)
 endif
 endif
 -include $(DEPS)
 endif
 endif
+