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