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