1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/test/perf/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,92 @@ 1.4 +## Makefile.in for ICU tests 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 +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 +## Build directory information 1.17 +subdir = test/perf 1.18 + 1.19 +@ICUIO_TRUE@IOTEST = iotest 1.20 + 1.21 +## Files to remove for 'make clean' 1.22 +CLEANFILES = *~ 1.23 + 1.24 +SUBDIRS = collationperf charperf dicttrieperf normperf ubrkperf unisetperf usetperf ustrperf utfperf utrie2perf DateFmtPerf howExpensiveIs 1.25 + 1.26 +# Subdirs that support 'xperf' 1.27 +XSUBDIRS = DateFmtPerf 1.28 + 1.29 +## List of phony targets 1.30 +.PHONY : everything all all-local all-recursive install install-local \ 1.31 +install-recursive clean clean-local clean-recursive distclean \ 1.32 +distclean-local distclean-recursive dist dist-recursive dist-local \ 1.33 +check check-recursive check-local xperf xperf-recursive 1.34 + 1.35 +## Clear suffix list 1.36 +.SUFFIXES : 1.37 + 1.38 +## List of standard targets 1.39 +everything: all-recursive all-local 1.40 +all: 1.41 +ifneq ($(RECURSIVE),YES) 1.42 + @echo simply use \`make\' \(or \`make everything\'\) to do all 1.43 +endif 1.44 + 1.45 +install: install-recursive install-local 1.46 +clean: clean-recursive clean-local 1.47 +distclean : distclean-recursive distclean-local 1.48 + $(RMV) hdrtst/Makefile 1.49 + $(RMV) perf/convperf/Makefile 1.50 + 1.51 +dist: dist-recursive dist-local 1.52 +check: everything check-recursive check-local 1.53 +check-recursive: all-recursive 1.54 + 1.55 +xperf: everything 1.56 + list='$(XSUBDIRS)'; for xsubdir in $$list; do \ 1.57 + $(MAKE) -w -C $$xsubdir xperf; \ 1.58 + done 1.59 + 1.60 +## Recursive targets 1.61 +all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 1.62 + @dot_seen=no; \ 1.63 + target=`echo $@ | sed s/-recursive//`; \ 1.64 + list='$(SUBDIRS)'; for subdir in $$list; do \ 1.65 + echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ 1.66 + if test "$$subdir" = "."; then \ 1.67 + dot_seen=yes; \ 1.68 + local_target="$$target-local"; \ 1.69 + else \ 1.70 + local_target="$$target"; \ 1.71 + fi; \ 1.72 + (cd $$subdir && $(MAKE) $$local_target) || exit; \ 1.73 + done; \ 1.74 + if test "$$dot_seen" = "no"; then \ 1.75 + $(MAKE) "$$target-local" || exit; \ 1.76 + fi 1.77 + 1.78 +all-local: 1.79 + 1.80 +install-local: 1.81 + 1.82 +dist-local: 1.83 + 1.84 +clean-local: 1.85 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.86 + 1.87 +distclean-local: clean-local 1.88 + $(RMV) Makefile 1.89 + 1.90 +check-local: all-local 1.91 + 1.92 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.93 + cd $(top_builddir) \ 1.94 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.95 +