michael@0: #****************************************************************************** michael@0: # michael@0: # Copyright (C) 1999-2013, International Business Machines michael@0: # Corporation and others. All Rights Reserved. michael@0: # michael@0: #****************************************************************************** michael@0: ## Makefile.in for ICU - test/intltest michael@0: michael@0: ## Source directory information michael@0: srcdir = @srcdir@ michael@0: top_srcdir = @top_srcdir@ michael@0: michael@0: top_builddir = ../.. michael@0: michael@0: ## All the flags and other definitions are included here. michael@0: include $(top_builddir)/icudefs.mk michael@0: michael@0: ## Build directory information michael@0: subdir = test/intltest michael@0: michael@0: ## Extra files to remove for 'make clean' michael@0: CLEANFILES = *~ $(DEPS) $(TESTXML) michael@0: michael@0: ## Target information michael@0: TARGET = intltest$(EXEEXT) michael@0: michael@0: BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../ michael@0: # Simplify the path for Unix michael@0: BUILDDIR := $(BUILDDIR:test/intltest/../../=) michael@0: # Simplify the path for Windows michael@0: BUILDDIR := $(BUILDDIR:test\\intltest/../../=) michael@0: # Simplify the path for Windows 98 michael@0: BUILDDIR := $(BUILDDIR:TEST\\INTLTEST/../../=) michael@0: michael@0: CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/toolutil -I$(top_srcdir)/tools/ctestfw michael@0: DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"' michael@0: LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M) $(LIB_THREAD) michael@0: michael@0: OBJECTS = aliastst.o allcoll.o apicoll.o astrotst.o callimts.o calregts.o caltest.o \ michael@0: caltztst.o canittst.o citrtest.o cntabcol.o colldata.o convtest.o currcoll.o \ michael@0: fldset.o dadrfmt.o dadrcal.o dadrcoll.o dcfmapts.o decoll.o dtfmapts.o dtfmrgts.o dtfmtrtts.o dtfmttst.o \ michael@0: dtptngts.o encoll.o escoll.o ficoll.o frcoll.o g7coll.o intltest.o \ michael@0: itercoll.o itformat.o itmajor.o itutil.o jacoll.o lcukocol.o \ michael@0: loctest.o miscdtfm.o mnkytst.o msfmrgts.o nmfmapts.o nmfmtrt.o \ michael@0: numfmtst.o numrgts.o plurults.o plurfmts.o pptest.o regcoll.o restest.o restsnew.o \ michael@0: sdtfmtts.o svccoll.o tchcfmt.o selfmts.o \ michael@0: tfsmalls.o tmsgfmt.o trcoll.o tscoll.o tsdate.o tsdcfmsy.o tsdtfmsy.o \ michael@0: tsmthred.o tsnmfmt.o tsputil.o tstnrapi.o tstnorm.o tzbdtest.o \ michael@0: tzregts.o tztest.o ucdtest.o usettest.o ustrtest.o strcase.o transtst.o strtest.o thcoll.o \ michael@0: bytestrietest.o ucharstrietest.o \ michael@0: itrbbi.o rbbiapts.o rbbitst.o ittrans.o transapi.o cpdtrtst.o \ michael@0: testutil.o transrt.o trnserr.o normconf.o sfwdchit.o \ michael@0: jamotest.o srchtest.o reptest.o regextst.o \ michael@0: itrbnf.o itrbnfrt.o itrbnfp.o ucaconf.o icusvtst.o \ michael@0: uobjtest.o idnaref.o idnaconf.o nptrans.o punyref.o testidn.o testidna.o uts46test.o \ michael@0: incaltst.o calcasts.o v32test.o uvectest.o textfile.o tokiter.o utxttest.o \ michael@0: windttst.o winnmtst.o winutil.o csdetest.o tzrulets.o tzoffloc.o tzfmttst.o ssearch.o dtifmtts.o \ michael@0: tufmtts.o itspoof.o simplethread.o bidiconf.o locnmtst.o dcfmtest.o alphaindextst.o listformattertest.o genderinfotest.o compactdecimalformattest.o regiontst.o michael@0: michael@0: DEPS = $(OBJECTS:.o=.d) michael@0: michael@0: -include Makefile.local michael@0: michael@0: ## List of phony targets michael@0: .PHONY : all all-local install install-local clean clean-local \ michael@0: distclean distclean-local dist dist-local check check-local xcheck xcheck-local \ michael@0: check-exhaustive check-exhaustive-local michael@0: michael@0: ## Clear suffix list michael@0: .SUFFIXES : michael@0: michael@0: ## List of standard targets michael@0: all: all-local michael@0: install: install-local michael@0: clean: clean-local michael@0: distclean : distclean-local michael@0: dist: dist-local michael@0: check: all check-local michael@0: xcheck: all xcheck-local michael@0: check-exhaustive: all check-exhaustive-local michael@0: michael@0: all-local: $(TARGET) michael@0: michael@0: install-local: michael@0: michael@0: dist-local: michael@0: michael@0: clean-local: michael@0: test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) michael@0: $(RMV) $(OBJECTS) $(TARGET) michael@0: michael@0: distclean-local: clean-local michael@0: $(RMV) Makefile michael@0: michael@0: # note- intltest gets $(THREADSENVFLAGS) so that it runs threaded on OS400 michael@0: check-local: all-local michael@0: $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS) michael@0: michael@0: check-exhaustive-local: all-local michael@0: $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) -e michael@0: michael@0: TESTXML=$(top_builddir)/test-$(TARGET).xml michael@0: xcheck-local: all-local michael@0: $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(INTLTEST_OPTS) -x $(TESTXML) michael@0: michael@0: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: michael@0: $(TARGET) : $(OBJECTS) michael@0: $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) michael@0: $(POST_BUILD_STEP) michael@0: michael@0: ifeq (,$(MAKECMDGOALS)) michael@0: -include $(DEPS) michael@0: else michael@0: ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) michael@0: ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) michael@0: -include $(DEPS) michael@0: endif michael@0: endif michael@0: endif