1 ## Makefile.in for ICU - test/perf/howExpensiveIs
2 ## Copyright (c) 2001-2012, International Business Machines Corporation and
3 ## others. All Rights Reserved.
5 ## Source directory information
7 top_srcdir = @top_srcdir@
9 top_builddir = ../../..
11 include $(top_builddir)/icudefs.mk
14 TARGET = howExpensiveIs
16 ## Build directory information
17 subdir = test/perf/$(TARGET)
19 ## Extra files to remove for 'make clean'
20 CLEANFILES = *~ $(DEPS)
22 CPPFLAGS += -I$(top_srcdir)/common -I$(top_builddir)/i18n -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
24 LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
26 OBJECTS = howExpensiveIs.o sieve.o
28 DEPS = $(OBJECTS:.o=.d)
30 ## List of phony targets
31 .PHONY : all all-local install install-local clean clean-local \
32 distclean distclean-local dist dist-local check check-local
37 ## List of standard targets
39 install: install-local
41 distclean : distclean-local
43 check: all check-local
52 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
53 $(RMV) $(OBJECTS) $(TARGET)
55 distclean-local: clean-local
58 invoke check-local: all-local
59 ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) ./$(TARGET) ./howexpensive.xml
61 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
63 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
65 $(TARGET) : $(OBJECTS)
66 $(LINK.cc) -o $@ $^ $(LIBS)
69 ifeq (,$(MAKECMDGOALS))
72 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
73 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
79 -include Makefile.local