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