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