]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/perf/collationperf/Makefile.in
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / test / perf / collationperf / Makefile.in
CommitLineData
46f4442e 1## Makefile.in for ICU - test/perf/collationperf
4388f060 2## Copyright (c) 2001-2011, International Business Machines Corporation and
9d88c943
A
3## others. All Rights Reserved.
4
5## Source directory information
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8
46f4442e 9top_builddir = ../../..
9d88c943
A
10
11include $(top_builddir)/icudefs.mk
12
9d88c943 13## Build directory information
46f4442e 14subdir = test/perf/collationperf
9d88c943
A
15
16## Extra files to remove for 'make clean'
17CLEANFILES = *~ $(DEPS)
18
19## Target information
46f4442e 20TARGET = collperf
73c04bcf 21
4388f060 22CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
46f4442e 23LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
73c04bcf 24
46f4442e 25OBJECTS = collperf.o
9d88c943
A
26
27DEPS = $(OBJECTS:.o=.d)
28
29## List of phony targets
30.PHONY : all all-local install install-local clean clean-local \
31distclean distclean-local dist dist-local check check-local
32
33## Clear suffix list
34.SUFFIXES :
35
36## List of standard targets
37all: all-local
38install: install-local
39clean: clean-local
40distclean : distclean-local
41dist: dist-local
42check: all check-local
43
44all-local: $(TARGET)
45
46install-local:
47
48dist-local:
49
50clean-local:
51 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
52 $(RMV) $(OBJECTS) $(TARGET)
53
54distclean-local: clean-local
55 $(RMV) Makefile
56
57check-local: all-local
729e4ab9 58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
9d88c943
A
59
60Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
61 cd $(top_builddir) \
62 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
63
64$(TARGET) : $(OBJECTS)
65 $(LINK.cc) -o $@ $^ $(LIBS)
46f4442e 66 $(POST_BUILD_STEP)
9d88c943
A
67
68invoke:
69 ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
70
71ifeq (,$(MAKECMDGOALS))
72-include $(DEPS)
73else
74ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
46f4442e 75ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
9d88c943
A
76-include $(DEPS)
77endif
78endif
46f4442e
A
79endif
80