1 ## Makefile.in for ICU - test/perf/collperf
2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html#License
5 ## Copyright (c) 2001-2013, International Business Machines Corporation and
6 ## others. All Rights Reserved.
8 ## Source directory information
10 top_srcdir = @top_srcdir@
12 top_builddir = ../../..
14 include $(top_builddir)/icudefs.mk
16 -include Makefile.local
18 ## Build directory information
19 subdir = test/perf/leperf
21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS)
27 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/layout/.. -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/io -I$(top_srcdir)/i18n
28 LIBS = $(LIBCTESTFW) $(LIBICUIO) $(LIBICULE) $(LIBICUUC) $(LIBICUI18N) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
32 DEPS = $(OBJECTS:.o=.d)
34 ## List of phony targets
35 .PHONY : all all-local install install-local clean clean-local \
36 distclean distclean-local dist dist-local check check-local
41 ## List of standard targets
43 install: install-local
45 distclean : distclean-local
47 check: all check-local
56 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
57 $(RMV) $(OBJECTS) $(TARGET)
59 distclean-local: clean-local
62 check-local: all-local
64 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
66 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
68 $(TARGET) : $(OBJECTS)
69 $(LINK.cc) -o $@ $^ $(LIBS)
74 # following is bash specific
75 set -o pipefail && ( ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) ./$(TARGET) $(INVOCATION) | tee current.out )
77 ifeq (,$(MAKECMDGOALS))
80 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
81 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)