1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/test/perf/howExpensiveIs/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,79 @@ 1.4 +## Makefile.in for ICU - test/perf/howExpensiveIs 1.5 +## Copyright (c) 2001-2012, International Business Machines Corporation and 1.6 +## others. All Rights Reserved. 1.7 + 1.8 +## Source directory information 1.9 +srcdir = @srcdir@ 1.10 +top_srcdir = @top_srcdir@ 1.11 + 1.12 +top_builddir = ../../.. 1.13 + 1.14 +include $(top_builddir)/icudefs.mk 1.15 + 1.16 +## Target information 1.17 +TARGET = howExpensiveIs 1.18 + 1.19 +## Build directory information 1.20 +subdir = test/perf/$(TARGET) 1.21 + 1.22 +## Extra files to remove for 'make clean' 1.23 +CLEANFILES = *~ $(DEPS) 1.24 + 1.25 +CPPFLAGS += -I$(top_srcdir)/common -I$(top_builddir)/i18n -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw 1.26 + 1.27 +LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) 1.28 + 1.29 +OBJECTS = howExpensiveIs.o sieve.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: 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 +invoke check-local: all-local 1.62 + ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) ./$(TARGET) ./howexpensive.xml 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.cc) -o $@ $^ $(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 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 1.77 +-include $(DEPS) 1.78 +endif 1.79 +endif 1.80 +endif 1.81 + 1.82 +-include Makefile.local