1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/test/perf/leperf/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,83 @@ 1.4 +## Makefile.in for ICU - test/perf/collperf 1.5 +## Copyright (c) 2001-2013, 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 +-include Makefile.local 1.17 + 1.18 +## Build directory information 1.19 +subdir = test/perf/leperf 1.20 + 1.21 +## Extra files to remove for 'make clean' 1.22 +CLEANFILES = *~ $(DEPS) 1.23 + 1.24 +## Target information 1.25 +TARGET = leperf 1.26 + 1.27 +CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/layout/.. -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/io -I$(top_srcdir)/i18n 1.28 +LIBS = $(LIBCTESTFW) $(LIBICUIO) $(LIBICULE) $(LIBICUUC) $(LIBICUI18N) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) 1.29 + 1.30 +OBJECTS = $(TARGET).o 1.31 + 1.32 +DEPS = $(OBJECTS:.o=.d) 1.33 + 1.34 +## List of phony targets 1.35 +.PHONY : all all-local install install-local clean clean-local \ 1.36 +distclean distclean-local dist dist-local check check-local 1.37 + 1.38 +## Clear suffix list 1.39 +.SUFFIXES : 1.40 + 1.41 +## List of standard targets 1.42 +all: all-local 1.43 +install: install-local 1.44 +clean: clean-local 1.45 +distclean : distclean-local 1.46 +dist: dist-local 1.47 +check: all check-local 1.48 + 1.49 +all-local: $(TARGET) 1.50 + 1.51 +install-local: 1.52 + 1.53 +dist-local: 1.54 + 1.55 +clean-local: 1.56 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.57 + $(RMV) $(OBJECTS) $(TARGET) 1.58 + 1.59 +distclean-local: clean-local 1.60 + $(RMV) Makefile 1.61 + 1.62 +check-local: all-local 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 +invoke: 1.73 + @$(RMV) current.out 1.74 +# following is bash specific 1.75 + set -o pipefail && ( ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) ./$(TARGET) $(INVOCATION) | tee current.out ) 1.76 + 1.77 +ifeq (,$(MAKECMDGOALS)) 1.78 +-include $(DEPS) 1.79 +else 1.80 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 1.81 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 1.82 +-include $(DEPS) 1.83 +endif 1.84 +endif 1.85 +endif 1.86 +