1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/tools/gencmn/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,93 @@ 1.4 +## Makefile.in for ICU - tools/gencmn 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/gencmn 1.19 + 1.20 +TARGET_STUB_NAME = gencmn 1.21 + 1.22 +SECTION = 8 1.23 + 1.24 +MAN_FILES = $(TARGET_STUB_NAME).$(SECTION) 1.25 + 1.26 + 1.27 +## Extra files to remove for 'make clean' 1.28 +CLEANFILES = *~ $(DEPS) $(MAN_FILES) 1.29 + 1.30 +## Target information 1.31 +TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 1.32 + 1.33 +CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 1.34 +LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 1.35 + 1.36 +OBJECTS = gencmn.o 1.37 + 1.38 +DEPS = $(OBJECTS:.o=.d) 1.39 + 1.40 +## List of phony targets 1.41 +.PHONY : all all-local install install-local clean clean-local \ 1.42 +distclean distclean-local dist dist-local check check-local install-man 1.43 + 1.44 +## Clear suffix list 1.45 +.SUFFIXES : 1.46 + 1.47 +## List of standard targets 1.48 +all: all-local 1.49 +install: install-local 1.50 +clean: clean-local 1.51 +distclean : distclean-local 1.52 +dist: dist-local 1.53 +check: all check-local 1.54 + 1.55 +all-local: $(TARGET) $(MAN_FILES) 1.56 + 1.57 +install-local: all-local install-man 1.58 + $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) 1.59 + $(INSTALL) $(TARGET) $(DESTDIR)$(sbindir) 1.60 + 1.61 +install-man: $(MAN_FILES) 1.62 + $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION) 1.63 + $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION) 1.64 + 1.65 +dist-local: 1.66 + 1.67 +clean-local: 1.68 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.69 + $(RMV) $(TARGET) $(OBJECTS) 1.70 + 1.71 +distclean-local: clean-local 1.72 + $(RMV) Makefile 1.73 + 1.74 +check-local: all-local 1.75 + 1.76 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.77 + cd $(top_builddir) \ 1.78 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.79 + 1.80 +$(TARGET) : $(OBJECTS) 1.81 + $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 1.82 + $(POST_BUILD_STEP) 1.83 + 1.84 +%.$(SECTION): $(srcdir)/%.$(SECTION).in 1.85 + cd $(top_builddir) \ 1.86 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.87 + 1.88 + 1.89 +ifeq (,$(MAKECMDGOALS)) 1.90 +-include $(DEPS) 1.91 +else 1.92 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 1.93 +-include $(DEPS) 1.94 +endif 1.95 +endif 1.96 +