]> git.saurik.com Git - apple/icu.git/blame_incremental - icuSources/test/cintltst/Makefile.in
ICU-66108.tar.gz
[apple/icu.git] / icuSources / test / cintltst / Makefile.in
... / ...
CommitLineData
1# Copyright (C) 2016 and later: Unicode, Inc. and others.
2# License & terms of use: http://www.unicode.org/copyright.html
3#******************************************************************************
4#
5# Copyright (C) 1999-2016, International Business Machines
6# Corporation and others. All Rights Reserved.
7#
8#******************************************************************************
9## Makefile.in for ICU - test/cintltst
10
11## Source directory information
12srcdir = @srcdir@
13top_srcdir = @top_srcdir@
14
15top_builddir = ../..
16
17## All the flags and other definitions are included here.
18include $(top_builddir)/icudefs.mk
19
20## Build directory information
21subdir = test/cintltst
22
23## Extra files to remove for 'make clean'
24CLEANFILES = *~ $(DEPS) $(TESTXML)
25
26## Target information
27TARGET = cintltst$(EXEEXT)
28
29BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
30# Simplify the path for Unix
31BUILDDIR := $(BUILDDIR:test/cintltst/../../=)
32# Simplify the path for Windows
33BUILDDIR := $(BUILDDIR:test\\cintltst/../../=)
34# Simplify the path for Windows 98
35BUILDDIR := $(BUILDDIR:TEST\\CINTLTST/../../=)
36
37# we define ICU_UNICODE_VERSION so we can test it
38CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/tools/toolutil
39DEFS += -D'ICU_UNICODE_VERSION="$(UNICODE_VERSION)"' -D'ICU_VERSION="@VERSION@"' -D'ICUDATA_NAME="$(ICUDATA_PLATFORM_NAME)"' -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"'
40LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
41
42OBJECTS = callcoll.o calltest.o capitst.o cbiapts.o cbkittst.o \
43ccaltst.o ucnvseltst.o cctest.o ccapitst.o ccolltst.o encoll.o cconvtst.o ccurrtst.o \
44cdateintervalformattest.o cdattst.o cdetst.o cdtdptst.o cdtrgtst.o cestst.o cfintst.o \
45cformtst.o cfrtst.o cg7coll.o chashtst.o cintltst.o citertst.o cjaptst.o cloctst.o \
46cmeasureformattest.o \
47cmsccoll.o cmsgtst.o cpluralrulestest.o cposxtst.o cldrtest.o \
48cnmdptst.o cnormtst.o cnumtst.o crelativedateformattest.o crestst.o creststn.o cturtst.o \
49cucdapi.o cucdtst.o custrtst.o cstrcase.o cutiltst.o nucnvtst.o nccbtst.o bocu1tst.o \
50cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o \
51ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o udatpg_test.o utf8tst.o \
52stdnmtst.o usrchtst.o custrtrn.o sorttest.o trietest.o trie2test.o ucptrietest.o usettest.o \
53uenumtst.o utmstest.o currtest.o \
54idnatest.o nfsprep.o spreptst.o sprpdata.o \
55hpmufn.o tracetst.o reapits.o uregiontest.o ulistfmttest.o\
56utexttst.o ucsdetst.o spooftest.o \
57cbiditransformtst.o \
58cgendtst.o \
59unumberformattertst.o uformattedvaluetst.o
60
61DEPS = $(OBJECTS:.o=.d)
62
63-include Makefile.local
64
65## List of phony targets
66.PHONY : all all-local install install-local clean clean-local \
67distclean distclean-local dist dist-local check check-local xcheck \
68check-exhaustive check-exhaustive-local
69
70## Clear suffix list
71.SUFFIXES :
72
73## List of standard targets
74all: all-local
75install: install-local
76clean: clean-local
77distclean : distclean-local
78dist: dist-local
79check: all check-local
80xcheck: all xcheck-local
81check-exhaustive: all check-exhaustive-local
82
83all-local: $(TARGET)
84
85install-local:
86
87dist-local:
88
89clean-local:
90 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
91 $(RMV) $(OBJECTS) $(TARGET)
92
93distclean-local: clean-local
94 $(RMV) Makefile
95
96# cintltest gets $(THREADSENVFLAGS) - just in case we get a threaded cintltst.
97
98check-local: all-local
99 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(CINTLTST_OPTS)
100
101check-exhaustive-local: all-local
102 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) -e
103
104TESTXML=$(top_builddir)/test-$(TARGET).xml
105xcheck-local: all-local
106 $(THREADSENVFLAGS) $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(CINTLTST_OPTS) -x $(TESTXML)
107
108Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
109 cd $(top_builddir) \
110 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
111
112$(TARGET) : $(OBJECTS)
113 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
114 $(POST_BUILD_STEP)
115
116ifeq (,$(MAKECMDGOALS))
117-include $(DEPS)
118else
119ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
120ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)
121-include $(DEPS)
122endif
123endif
124endif