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