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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/intl/icu/source/test/intltest/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,122 @@
     1.4 +#******************************************************************************
     1.5 +#
     1.6 +#   Copyright (C) 1999-2013, International Business Machines
     1.7 +#   Corporation and others.  All Rights Reserved.
     1.8 +#
     1.9 +#******************************************************************************
    1.10 +## Makefile.in for ICU - test/intltest
    1.11 +
    1.12 +## Source directory information
    1.13 +srcdir = @srcdir@
    1.14 +top_srcdir = @top_srcdir@
    1.15 +
    1.16 +top_builddir = ../..
    1.17 +
    1.18 +## All the flags and other definitions are included here.
    1.19 +include $(top_builddir)/icudefs.mk
    1.20 +
    1.21 +## Build directory information
    1.22 +subdir = test/intltest
    1.23 +
    1.24 +## Extra files to remove for 'make clean'
    1.25 +CLEANFILES = *~ $(DEPS) $(TESTXML)
    1.26 +
    1.27 +## Target information
    1.28 +TARGET = intltest$(EXEEXT)
    1.29 +
    1.30 +BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
    1.31 +# Simplify the path for Unix
    1.32 +BUILDDIR := $(BUILDDIR:test/intltest/../../=)
    1.33 +# Simplify the path for Windows
    1.34 +BUILDDIR := $(BUILDDIR:test\\intltest/../../=)
    1.35 +# Simplify the path for Windows 98
    1.36 +BUILDDIR := $(BUILDDIR:TEST\\INTLTEST/../../=)
    1.37 +
    1.38 +CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw
    1.39 +DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"'
    1.40 +LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) $(LIB_THREAD)
    1.41 +
    1.42 +OBJECTS = aliastst.o allcoll.o apicoll.o astrotst.o callimts.o calregts.o caltest.o \
    1.43 +caltztst.o canittst.o citrtest.o cntabcol.o colldata.o convtest.o currcoll.o \
    1.44 +fldset.o dadrfmt.o dadrcal.o dadrcoll.o dcfmapts.o decoll.o dtfmapts.o dtfmrgts.o dtfmtrtts.o dtfmttst.o	\
    1.45 +dtptngts.o encoll.o escoll.o ficoll.o frcoll.o g7coll.o intltest.o	\
    1.46 +itercoll.o itformat.o itmajor.o itutil.o jacoll.o lcukocol.o	\
    1.47 +loctest.o miscdtfm.o mnkytst.o msfmrgts.o nmfmapts.o nmfmtrt.o		\
    1.48 +numfmtst.o numrgts.o  plurults.o plurfmts.o pptest.o regcoll.o restest.o restsnew.o \
    1.49 +sdtfmtts.o svccoll.o tchcfmt.o	selfmts.o \
    1.50 +tfsmalls.o tmsgfmt.o trcoll.o tscoll.o tsdate.o tsdcfmsy.o tsdtfmsy.o	\
    1.51 +tsmthred.o tsnmfmt.o tsputil.o tstnrapi.o tstnorm.o tzbdtest.o		\
    1.52 +tzregts.o tztest.o ucdtest.o usettest.o ustrtest.o strcase.o transtst.o strtest.o thcoll.o \
    1.53 +bytestrietest.o ucharstrietest.o \
    1.54 +itrbbi.o rbbiapts.o rbbitst.o ittrans.o transapi.o cpdtrtst.o \
    1.55 +testutil.o transrt.o trnserr.o normconf.o sfwdchit.o \
    1.56 +jamotest.o srchtest.o reptest.o regextst.o \
    1.57 +itrbnf.o itrbnfrt.o itrbnfp.o ucaconf.o icusvtst.o \
    1.58 +uobjtest.o idnaref.o idnaconf.o nptrans.o punyref.o testidn.o testidna.o uts46test.o \
    1.59 +incaltst.o calcasts.o v32test.o uvectest.o textfile.o tokiter.o utxttest.o \
    1.60 +windttst.o winnmtst.o winutil.o csdetest.o tzrulets.o tzoffloc.o tzfmttst.o ssearch.o dtifmtts.o \
    1.61 +tufmtts.o itspoof.o simplethread.o bidiconf.o locnmtst.o dcfmtest.o alphaindextst.o listformattertest.o genderinfotest.o compactdecimalformattest.o regiontst.o
    1.62 +
    1.63 +DEPS = $(OBJECTS:.o=.d)
    1.64 +
    1.65 +-include Makefile.local
    1.66 +
    1.67 +## List of phony targets
    1.68 +.PHONY : all all-local install install-local clean clean-local	\
    1.69 +distclean distclean-local dist dist-local check check-local xcheck xcheck-local	\
    1.70 +check-exhaustive check-exhaustive-local
    1.71 +
    1.72 +## Clear suffix list
    1.73 +.SUFFIXES :
    1.74 +
    1.75 +## List of standard targets
    1.76 +all: all-local
    1.77 +install: install-local
    1.78 +clean: clean-local
    1.79 +distclean : distclean-local
    1.80 +dist: dist-local
    1.81 +check: all check-local
    1.82 +xcheck: all xcheck-local
    1.83 +check-exhaustive: all check-exhaustive-local
    1.84 +
    1.85 +all-local: $(TARGET)
    1.86 +
    1.87 +install-local:
    1.88 +
    1.89 +dist-local:
    1.90 +
    1.91 +clean-local:
    1.92 +	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    1.93 +	$(RMV) $(OBJECTS) $(TARGET)
    1.94 +
    1.95 +distclean-local: clean-local
    1.96 +	$(RMV) Makefile
    1.97 +
    1.98 +# note- intltest gets $(THREADSENVFLAGS) so that it runs threaded on OS400
    1.99 +check-local: all-local
   1.100 +	$(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS)
   1.101 +
   1.102 +check-exhaustive-local: all-local
   1.103 +	$(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) -e
   1.104 +
   1.105 +TESTXML=$(top_builddir)/test-$(TARGET).xml
   1.106 +xcheck-local: all-local
   1.107 +	$(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS) -x $(TESTXML)
   1.108 +
   1.109 +Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
   1.110 +	cd $(top_builddir) \
   1.111 +	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
   1.112 +
   1.113 +$(TARGET) : $(OBJECTS)
   1.114 +	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
   1.115 +	$(POST_BUILD_STEP)
   1.116 +
   1.117 +ifeq (,$(MAKECMDGOALS))
   1.118 +-include $(DEPS)
   1.119 +else
   1.120 +ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
   1.121 +ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
   1.122 +-include $(DEPS)
   1.123 +endif
   1.124 +endif
   1.125 +endif

mercurial