OLD | NEW |
1 ## Makefile.in for ICU tests | 1 ## Makefile.in for ICU tests |
2 ## Copyright (c) 1999-2011, International Business Machines Corporation and | 2 ## Copyright (c) 1999-2011, International Business Machines Corporation and |
3 ## others. All Rights Reserved. | 3 ## others. All Rights Reserved. |
4 | 4 |
5 ## Source directory information | 5 ## Source directory information |
6 srcdir = @srcdir@ | 6 srcdir = @srcdir@ |
7 top_srcdir = @top_srcdir@ | 7 top_srcdir = @top_srcdir@ |
8 | 8 |
9 top_builddir = ../.. | 9 top_builddir = ../.. |
10 | 10 |
11 include $(top_builddir)/icudefs.mk | 11 include $(top_builddir)/icudefs.mk |
12 | 12 |
13 ## Build directory information | 13 ## Build directory information |
14 subdir = test/perf | 14 subdir = test/perf |
15 | 15 |
16 @ICUIO_TRUE@IOTEST = iotest | 16 @ICUIO_TRUE@IOTEST = iotest |
17 | 17 |
18 ## Files to remove for 'make clean' | 18 ## Files to remove for 'make clean' |
19 CLEANFILES = *~ | 19 CLEANFILES = *~ |
20 | 20 |
21 SUBDIRS = collationperf charperf dicttrieperf normperf ubrkperf unisetperf usetp
erf ustrperf utfperf utrie2perf DateFmtPerf howExpensiveIs | 21 SUBDIRS = collationperf collperf collperf2 charperf dicttrieperf normperf ubrkpe
rf unisetperf usetperf ustrperf utfperf utrie2perf DateFmtPerf howExpensiveIs |
22 | 22 |
23 # Subdirs that support 'xperf' | 23 # Subdirs that support 'xperf' |
24 XSUBDIRS = DateFmtPerf | 24 XSUBDIRS = DateFmtPerf |
25 | 25 |
26 ## List of phony targets | 26 ## List of phony targets |
27 .PHONY : everything all all-local all-recursive install install-local
\ | 27 .PHONY : everything all all-local all-recursive install install-local
\ |
28 install-recursive clean clean-local clean-recursive distclean \ | 28 install-recursive clean clean-local clean-recursive distclean \ |
29 distclean-local distclean-recursive dist dist-recursive dist-local \ | 29 distclean-local distclean-recursive dist dist-recursive dist-local \ |
30 check check-recursive check-local xperf xperf-recursive | 30 check check-recursive check-local xperf xperf-recursive |
31 | 31 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 | 83 |
84 distclean-local: clean-local | 84 distclean-local: clean-local |
85 $(RMV) Makefile | 85 $(RMV) Makefile |
86 | 86 |
87 check-local: all-local | 87 check-local: all-local |
88 | 88 |
89 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status | 89 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
90 cd $(top_builddir) \ | 90 cd $(top_builddir) \ |
91 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | 91 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
92 | 92 |
OLD | NEW |