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