OLD | NEW |
1 ## Makefile.in for ICU - test/perf/collperf | 1 ## Makefile.in for ICU - test/perf/collperf2 |
2 ## Copyright (c) 2001-2011, International Business Machines Corporation and | 2 ## Copyright (c) 2013, 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/convperf | 14 subdir = test/perf/collperf2 |
15 | 15 |
16 ## Extra files to remove for 'make clean' | 16 ## Extra files to remove for 'make clean' |
17 CLEANFILES = *~ $(DEPS) | 17 CLEANFILES = *~ $(DEPS) |
18 | 18 |
19 ## Target information | 19 ## Target information |
20 TARGET = collperf | 20 TARGET = collperf2 |
21 | 21 |
22 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/to
olutil -I$(top_srcdir)/tools/ctestfw | 22 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/to
olutil -I$(top_srcdir)/tools/ctestfw |
23 LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS)
$(LIB_M) | 23 LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS)
$(LIB_M) |
24 | 24 |
25 OBJECTS = convperf.o | 25 OBJECTS = collperf2.o |
26 | 26 |
27 DEPS = $(OBJECTS:.o=.d) | 27 DEPS = $(OBJECTS:.o=.d) |
28 | 28 |
29 ## List of phony targets | 29 ## List of phony targets |
30 .PHONY : all all-local install install-local clean clean-local \ | 30 .PHONY : all all-local install install-local clean clean-local \ |
31 distclean distclean-local dist dist-local check check-local | 31 distclean distclean-local dist dist-local check check-local |
32 | 32 |
33 ## Clear suffix list | 33 ## Clear suffix list |
34 .SUFFIXES : | 34 .SUFFIXES : |
35 | 35 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 ifeq (,$(MAKECMDGOALS)) | 70 ifeq (,$(MAKECMDGOALS)) |
71 -include $(DEPS) | 71 -include $(DEPS) |
72 else | 72 else |
73 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 73 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
74 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) | 74 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) |
75 -include $(DEPS) | 75 -include $(DEPS) |
76 endif | 76 endif |
77 endif | 77 endif |
78 endif | 78 endif |
79 | 79 |
OLD | NEW |