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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/test/perf/unisetperf/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,78 @@
     1.4 +## Makefile.in for ICU - test/perf/unisetperf
     1.5 +## Copyright (c) 2001-2011, International Business Machines Corporation and
     1.6 +## others. All Rights Reserved.
     1.7 +
     1.8 +## Source directory information
     1.9 +srcdir = @srcdir@
    1.10 +top_srcdir = @top_srcdir@
    1.11 +
    1.12 +top_builddir = ../../..
    1.13 +
    1.14 +include $(top_builddir)/icudefs.mk
    1.15 +
    1.16 +## Build directory information
    1.17 +subdir = test/perf/unisetperf
    1.18 +
    1.19 +## Extra files to remove for 'make clean'
    1.20 +CLEANFILES = *~ $(DEPS)
    1.21 +
    1.22 +## Target information
    1.23 +TARGET = unisetperf
    1.24 +
    1.25 +CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
    1.26 +LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
    1.27 +
    1.28 +OBJECTS = unisetperf.o
    1.29 +
    1.30 +DEPS = $(OBJECTS:.o=.d)
    1.31 +
    1.32 +## List of phony targets
    1.33 +.PHONY : all all-local install install-local clean clean-local	\
    1.34 +distclean distclean-local dist dist-local check check-local
    1.35 +
    1.36 +## Clear suffix list
    1.37 +.SUFFIXES :
    1.38 +
    1.39 +## List of standard targets
    1.40 +all: all-local
    1.41 +install: install-local
    1.42 +clean: clean-local
    1.43 +distclean : distclean-local
    1.44 +dist: dist-local
    1.45 +check: all check-local
    1.46 +
    1.47 +all-local: $(TARGET)
    1.48 +
    1.49 +install-local:
    1.50 +
    1.51 +dist-local:
    1.52 +
    1.53 +clean-local:
    1.54 +	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    1.55 +	$(RMV) $(OBJECTS) $(TARGET)
    1.56 +
    1.57 +distclean-local: clean-local
    1.58 +	$(RMV) Makefile
    1.59 +
    1.60 +check-local: all-local
    1.61 +
    1.62 +Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
    1.63 +	cd $(top_builddir) \
    1.64 +	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
    1.65 +
    1.66 +$(TARGET) : $(OBJECTS)
    1.67 +	$(LINK.cc) -o $@ $^ $(LIBS)
    1.68 +
    1.69 +invoke:
    1.70 +	ICU_DATA=$${ICU_DATA:-$(top_builddir)/data/} TZ=PST8PDT $(INVOKE) $(INVOCATION)
    1.71 +
    1.72 +ifeq (,$(MAKECMDGOALS))
    1.73 +-include $(DEPS)
    1.74 +else
    1.75 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
    1.76 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
    1.77 +-include $(DEPS)
    1.78 +endif
    1.79 +endif
    1.80 +endif
    1.81 +

mercurial