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