intl/icu/source/tools/pkgdata/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/tools/pkgdata/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,99 @@
     1.4 +## Makefile.in for ICU - tools/pkgdata
     1.5 +## Copyright (c) 1999-2011, International Business Machines Corporation and
     1.6 +## others. All Rights Reserved.
     1.7 +## Steven R. Loomis
     1.8 +
     1.9 +## Source directory information
    1.10 +srcdir = @srcdir@
    1.11 +top_srcdir = @top_srcdir@
    1.12 +
    1.13 +top_builddir = ../..
    1.14 +
    1.15 +include $(top_builddir)/icudefs.mk
    1.16 +
    1.17 +## Build directory information
    1.18 +subdir = tools/pkgdata
    1.19 +
    1.20 +TARGET_STUB_NAME = pkgdata
    1.21 +
    1.22 +SECTION = 1
    1.23 +
    1.24 +MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
    1.25 +
    1.26 +## Extra files to remove for 'make clean'
    1.27 +CLEANFILES = *~ $(DEPS) $(MAN_FILES)
    1.28 +
    1.29 +ifneq ($(PKGDATA_DEFS),)
    1.30 +DEFS += $(PKGDATA_DEFS)
    1.31 +endif
    1.32 +
    1.33 +## Target information
    1.34 +TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
    1.35 +
    1.36 +CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil
    1.37 +DEFS += -DUDATA_SO_SUFFIX=\".$(SO)\" -DSTATIC_O=\"$(STATIC_O)\"
    1.38 +LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
    1.39 +
    1.40 +OBJECTS = pkgdata.o pkgtypes.o
    1.41 +
    1.42 +DEPS = $(OBJECTS:.o=.d)
    1.43 +
    1.44 +## List of phony targets
    1.45 +.PHONY : all all-local install install-local clean clean-local	\
    1.46 +distclean distclean-local dist dist-local check check-local install-man
    1.47 +
    1.48 +## Clear suffix list
    1.49 +.SUFFIXES :
    1.50 +
    1.51 +## List of standard targets
    1.52 +all: all-local
    1.53 +install: install-local
    1.54 +clean: clean-local
    1.55 +distclean : distclean-local
    1.56 +dist: dist-local
    1.57 +check: all check-local
    1.58 +
    1.59 +all-local: $(TARGET) $(MAN_FILES)
    1.60 +
    1.61 +install-local: all-local install-man
    1.62 +	$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
    1.63 +	$(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
    1.64 +
    1.65 +install-man: $(MAN_FILES)
    1.66 +	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
    1.67 +	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
    1.68 +
    1.69 +
    1.70 +dist-local:
    1.71 +
    1.72 +clean-local:
    1.73 +	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    1.74 +	$(RMV) $(TARGET) $(OBJECTS)
    1.75 +
    1.76 +distclean-local: clean-local
    1.77 +	$(RMV) Makefile
    1.78 +
    1.79 +check-local: all-local
    1.80 +
    1.81 +Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    1.82 +	cd $(top_builddir) \
    1.83 +	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    1.84 +
    1.85 +$(TARGET) : $(OBJECTS)
    1.86 +	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
    1.87 +	$(POST_BUILD_STEP)
    1.88 +
    1.89 +
    1.90 +%.$(SECTION): $(srcdir)/%.$(SECTION).in
    1.91 +	cd $(top_builddir) \
    1.92 +	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    1.93 +
    1.94 +
    1.95 +ifeq (,$(MAKECMDGOALS))
    1.96 +-include $(DEPS)
    1.97 +else
    1.98 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
    1.99 +-include $(DEPS)
   1.100 +endif
   1.101 +endif
   1.102 +

mercurial