]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/genccode/Makefile.in
ICU-57163.0.1.tar.gz
[apple/icu.git] / icuSources / tools / genccode / Makefile.in
index 355f4e8987907e63c8bd691dd34d322e87001e2b..fe6b60fad7de47c72243284097c4edd6858f1f9b 100644 (file)
@@ -1,5 +1,5 @@
 ## Makefile.in for ICU - tools/genccode
-## Copyright (c) 1999-2003, International Business Machines Corporation and
+## Copyright (c) 1999-2011, International Business Machines Corporation and
 ## others. All Rights Reserved.
 ## Steven R. Loomis
 
@@ -14,31 +14,29 @@ include $(top_builddir)/icudefs.mk
 ## Build directory information
 subdir = tools/genccode
 
-##
+TARGET_STUB_NAME = genccode
 
 SECTION = 8
 
-MANX_FILES = $(TARGET:$(EXEEXT)=).$(SECTION)
+MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
 
-ALL_MAN_FILES = $(MANX_FILES)
 
 ## Extra files to remove for 'make clean'
-CLEANFILES = *~ $(DEPS) $(RES_FILES) $(TEST_FILES) $(ALL_MAN_FILES)
+CLEANFILES = *~ $(DEPS) $(MAN_FILES)
 
 ## Target information
-TARGET = genccode$(EXEEXT)
+TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
 
-CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(srcdir)/../toolutil $(BIR_CPPFLAGS)
-LIBS = $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) $(LIBICUTOOLUTIL)
+CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
+LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
 
 OBJECTS = genccode.o
 
 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 :
@@ -51,22 +49,16 @@ distclean : distclean-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)$(sbindir)
-       $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)/$(TARGET)
+       $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
 
-# 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)
 
-%.$(SECTION): $(srcdir)/%.$(SECTION).in
-       cd $(top_builddir) \
-        && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
-
 dist-local:
 
 clean-local:
@@ -83,7 +75,14 @@ Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
 
 $(TARGET) : $(OBJECTS)
-       $(LINK.c) $(OUTOPT)$@ $^ $(LIBS) 
+       $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
+       $(POST_BUILD_STEP)
+
+
+%.$(SECTION): $(srcdir)/%.$(SECTION).in
+       cd $(top_builddir) \
+        && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
 
 ifeq (,$(MAKECMDGOALS))
 -include $(DEPS)
@@ -92,3 +91,4 @@ ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
 -include $(DEPS)
 endif
 endif
+