intl/icu/source/test/perf/convperf/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.

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

mercurial