intl/icu/source/test/perf/leperf/Makefile.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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

mercurial