]>
Commit | Line | Data |
---|---|---|
73c04bcf A |
1 | #****************************************************************************** |
2 | # | |
729e4ab9 | 3 | # Copyright (C) 1999-2010, International Business Machines |
73c04bcf A |
4 | # Corporation and others. All Rights Reserved. |
5 | # | |
6 | #****************************************************************************** | |
b75a7d8f | 7 | ## Makefile.in for ICU - test/cintltst |
b75a7d8f A |
8 | |
9 | ## Source directory information | |
10 | srcdir = @srcdir@ | |
11 | top_srcdir = @top_srcdir@ | |
12 | ||
13 | top_builddir = ../.. | |
14 | ||
73c04bcf | 15 | ## All the flags and other definitions are included here. |
b75a7d8f A |
16 | include $(top_builddir)/icudefs.mk |
17 | ||
18 | ## Build directory information | |
19 | subdir = test/cintltst | |
20 | ||
21 | ## Extra files to remove for 'make clean' | |
729e4ab9 | 22 | CLEANFILES = *~ $(DEPS) $(TESTXML) |
b75a7d8f A |
23 | |
24 | ## Target information | |
25 | TARGET = cintltst$(EXEEXT) | |
26 | ||
374ca955 | 27 | BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../ |
73c04bcf | 28 | # Simplify the path for Unix |
b75a7d8f | 29 | BUILDDIR := $(BUILDDIR:test/cintltst/../../=) |
73c04bcf A |
30 | # Simplify the path for Windows |
31 | BUILDDIR := $(BUILDDIR:test\\cintltst/../../=) | |
32 | # Simplify the path for Windows 98 | |
33 | BUILDDIR := $(BUILDDIR:TEST\\CINTLTST/../../=) | |
b75a7d8f | 34 | |
73c04bcf | 35 | ifneq ($(top_builddir),$(top_srcdir)) |
729e4ab9 | 36 | CPPFLAGS += -I- -I$(top_builddir)/common -I$(srcdir) |
73c04bcf | 37 | endif |
b75a7d8f | 38 | # we define ICU_UNICODE_VERSION so we can test it |
73c04bcf | 39 | CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/tools/toolutil |
374ca955 | 40 | 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 | 41 | LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUTOOLUTIL) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) |
b75a7d8f A |
42 | |
43 | OBJECTS = callcoll.o calltest.o colutil.o capitst.o cbiapts.o cbkittst.o \ | |
729e4ab9 | 44 | ccaltst.o ucnvseltst.o cctest.o ccapitst.o ccolltst.o encoll.o cconvtst.o ccurrtst.o \ |
b75a7d8f A |
45 | cdattst.o cdetst.o cdtdptst.o cdtrgtst.o cestst.o cfintst.o cformtst.o \ |
46 | cfrtst.o cg7coll.o chashtst.o cintltst.o citertst.o cjaptst.o cloctst.o \ | |
374ca955 | 47 | cmsccoll.o cmsgtst.o cposxtst.o cldrtest.o \ |
73c04bcf A |
48 | cnmdptst.o cnormtst.o cnumtst.o crestst.o creststn.o cturtst.o \ |
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 \ | |
729e4ab9 | 55 | hpmufn.o tracetst.o reapits.o utexttst.o ucsdetst.o spooftest.o |
b75a7d8f A |
56 | |
57 | DEPS = $(OBJECTS:.o=.d) | |
58 | ||
73c04bcf A |
59 | -include Makefile.local |
60 | ||
b75a7d8f A |
61 | ## List of phony targets |
62 | .PHONY : all all-local install install-local clean clean-local \ | |
729e4ab9 | 63 | distclean distclean-local dist dist-local check check-local xcheck |
b75a7d8f A |
64 | |
65 | ## Clear suffix list | |
66 | .SUFFIXES : | |
67 | ||
68 | ## List of standard targets | |
69 | all: all-local | |
70 | install: install-local | |
71 | clean: clean-local | |
72 | distclean : distclean-local | |
73 | dist: dist-local | |
74 | check: all check-local | |
729e4ab9 | 75 | xcheck: all xcheck-local |
b75a7d8f A |
76 | |
77 | all-local: $(TARGET) | |
78 | ||
79 | install-local: | |
80 | ||
81 | dist-local: | |
82 | ||
83 | clean-local: | |
84 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) | |
85 | $(RMV) $(OBJECTS) $(TARGET) | |
86 | ||
87 | distclean-local: clean-local | |
88 | $(RMV) Makefile | |
89 | ||
b75a7d8f | 90 | check-local: all-local |
374ca955 | 91 | $(INVOKE) ./$(TARGET) $(CINTLTST_OPTS) |
b75a7d8f | 92 | |
729e4ab9 A |
93 | TESTXML=$(top_builddir)/test-$(TARGET).xml |
94 | xcheck-local: all-local | |
95 | $(INVOKE) ./$(TARGET) $(CINTLTST_OPTS) -x $(TESTXML) | |
96 | ||
b75a7d8f A |
97 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
98 | cd $(top_builddir) \ | |
99 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status | |
100 | ||
101 | $(TARGET) : $(OBJECTS) | |
46f4442e A |
102 | $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) |
103 | $(POST_BUILD_STEP) | |
b75a7d8f A |
104 | |
105 | ifeq (,$(MAKECMDGOALS)) | |
106 | -include $(DEPS) | |
107 | else | |
108 | ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | |
109 | ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) | |
110 | -include $(DEPS) | |
111 | endif | |
112 | endif | |
113 | endif | |
73c04bcf | 114 |