intl/icu/source/test/intltest/Makefile.in

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 #******************************************************************************
michael@0 2 #
michael@0 3 # Copyright (C) 1999-2013, International Business Machines
michael@0 4 # Corporation and others. All Rights Reserved.
michael@0 5 #
michael@0 6 #******************************************************************************
michael@0 7 ## Makefile.in for ICU - test/intltest
michael@0 8
michael@0 9 ## Source directory information
michael@0 10 srcdir = @srcdir@
michael@0 11 top_srcdir = @top_srcdir@
michael@0 12
michael@0 13 top_builddir = ../..
michael@0 14
michael@0 15 ## All the flags and other definitions are included here.
michael@0 16 include $(top_builddir)/icudefs.mk
michael@0 17
michael@0 18 ## Build directory information
michael@0 19 subdir = test/intltest
michael@0 20
michael@0 21 ## Extra files to remove for 'make clean'
michael@0 22 CLEANFILES = *~ $(DEPS) $(TESTXML)
michael@0 23
michael@0 24 ## Target information
michael@0 25 TARGET = intltest$(EXEEXT)
michael@0 26
michael@0 27 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
michael@0 28 # Simplify the path for Unix
michael@0 29 BUILDDIR := $(BUILDDIR:test/intltest/../../=)
michael@0 30 # Simplify the path for Windows
michael@0 31 BUILDDIR := $(BUILDDIR:test\\intltest/../../=)
michael@0 32 # Simplify the path for Windows 98
michael@0 33 BUILDDIR := $(BUILDDIR:TEST\\INTLTEST/../../=)
michael@0 34
michael@0 35 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
michael@0 36 DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"'
michael@0 37 LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) $(LIB_THREAD)
michael@0 38
michael@0 39 OBJECTS = aliastst.o allcoll.o apicoll.o astrotst.o callimts.o calregts.o caltest.o \
michael@0 40 caltztst.o canittst.o citrtest.o cntabcol.o colldata.o convtest.o currcoll.o \
michael@0 41 fldset.o dadrfmt.o dadrcal.o dadrcoll.o dcfmapts.o decoll.o dtfmapts.o dtfmrgts.o dtfmtrtts.o dtfmttst.o \
michael@0 42 dtptngts.o encoll.o escoll.o ficoll.o frcoll.o g7coll.o intltest.o \
michael@0 43 itercoll.o itformat.o itmajor.o itutil.o jacoll.o lcukocol.o \
michael@0 44 loctest.o miscdtfm.o mnkytst.o msfmrgts.o nmfmapts.o nmfmtrt.o \
michael@0 45 numfmtst.o numrgts.o plurults.o plurfmts.o pptest.o regcoll.o restest.o restsnew.o \
michael@0 46 sdtfmtts.o svccoll.o tchcfmt.o selfmts.o \
michael@0 47 tfsmalls.o tmsgfmt.o trcoll.o tscoll.o tsdate.o tsdcfmsy.o tsdtfmsy.o \
michael@0 48 tsmthred.o tsnmfmt.o tsputil.o tstnrapi.o tstnorm.o tzbdtest.o \
michael@0 49 tzregts.o tztest.o ucdtest.o usettest.o ustrtest.o strcase.o transtst.o strtest.o thcoll.o \
michael@0 50 bytestrietest.o ucharstrietest.o \
michael@0 51 itrbbi.o rbbiapts.o rbbitst.o ittrans.o transapi.o cpdtrtst.o \
michael@0 52 testutil.o transrt.o trnserr.o normconf.o sfwdchit.o \
michael@0 53 jamotest.o srchtest.o reptest.o regextst.o \
michael@0 54 itrbnf.o itrbnfrt.o itrbnfp.o ucaconf.o icusvtst.o \
michael@0 55 uobjtest.o idnaref.o idnaconf.o nptrans.o punyref.o testidn.o testidna.o uts46test.o \
michael@0 56 incaltst.o calcasts.o v32test.o uvectest.o textfile.o tokiter.o utxttest.o \
michael@0 57 windttst.o winnmtst.o winutil.o csdetest.o tzrulets.o tzoffloc.o tzfmttst.o ssearch.o dtifmtts.o \
michael@0 58 tufmtts.o itspoof.o simplethread.o bidiconf.o locnmtst.o dcfmtest.o alphaindextst.o listformattertest.o genderinfotest.o compactdecimalformattest.o regiontst.o
michael@0 59
michael@0 60 DEPS = $(OBJECTS:.o=.d)
michael@0 61
michael@0 62 -include Makefile.local
michael@0 63
michael@0 64 ## List of phony targets
michael@0 65 .PHONY : all all-local install install-local clean clean-local \
michael@0 66 distclean distclean-local dist dist-local check check-local xcheck xcheck-local \
michael@0 67 check-exhaustive check-exhaustive-local
michael@0 68
michael@0 69 ## Clear suffix list
michael@0 70 .SUFFIXES :
michael@0 71
michael@0 72 ## List of standard targets
michael@0 73 all: all-local
michael@0 74 install: install-local
michael@0 75 clean: clean-local
michael@0 76 distclean : distclean-local
michael@0 77 dist: dist-local
michael@0 78 check: all check-local
michael@0 79 xcheck: all xcheck-local
michael@0 80 check-exhaustive: all check-exhaustive-local
michael@0 81
michael@0 82 all-local: $(TARGET)
michael@0 83
michael@0 84 install-local:
michael@0 85
michael@0 86 dist-local:
michael@0 87
michael@0 88 clean-local:
michael@0 89 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
michael@0 90 $(RMV) $(OBJECTS) $(TARGET)
michael@0 91
michael@0 92 distclean-local: clean-local
michael@0 93 $(RMV) Makefile
michael@0 94
michael@0 95 # note- intltest gets $(THREADSENVFLAGS) so that it runs threaded on OS400
michael@0 96 check-local: all-local
michael@0 97 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS)
michael@0 98
michael@0 99 check-exhaustive-local: all-local
michael@0 100 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) -e
michael@0 101
michael@0 102 TESTXML=$(top_builddir)/test-$(TARGET).xml
michael@0 103 xcheck-local: all-local
michael@0 104 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS) -x $(TESTXML)
michael@0 105
michael@0 106 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
michael@0 107 cd $(top_builddir) \
michael@0 108 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
michael@0 109
michael@0 110 $(TARGET) : $(OBJECTS)
michael@0 111 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
michael@0 112 $(POST_BUILD_STEP)
michael@0 113
michael@0 114 ifeq (,$(MAKECMDGOALS))
michael@0 115 -include $(DEPS)
michael@0 116 else
michael@0 117 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
michael@0 118 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
michael@0 119 -include $(DEPS)
michael@0 120 endif
michael@0 121 endif
michael@0 122 endif

mercurial