1 #******************************************************************************
3 # Copyright (C) 1999-2008, International Business Machines
4 # Corporation and others. All Rights Reserved.
6 #******************************************************************************
7 ## Makefile.in for ICU - test/cintltst
9 ## Source directory information
11 top_srcdir = @top_srcdir@
15 ## All the flags and other definitions are included here.
16 include $(top_builddir)/icudefs.mk
18 ## Build directory information
19 subdir = test/cintltst
21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS)
25 TARGET = cintltst$(EXEEXT)
27 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
28 # Simplify the path for Unix
29 BUILDDIR := $(BUILDDIR:test/cintltst/../../=)
30 # Simplify the path for Windows
31 BUILDDIR := $(BUILDDIR:test\\cintltst/../../=)
32 # Simplify the path for Windows 98
33 BUILDDIR := $(BUILDDIR:TEST\\CINTLTST/../../=)
35 ifneq ($(top_builddir),$(top_srcdir))
36 CPPFLAGS += -I$(top_builddir)/common
38 # we define ICU_UNICODE_VERSION so we can test it
39 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/tools/toolutil
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)"'
41 LIBS = $(LIBCTESTFW) $(LIBICUI18N) $(LIBICUUC) $(LIBICUTOOLUTIL) $(DEFAULT_LIBS) $(LIB_M)
43 OBJECTS = callcoll.o calltest.o colutil.o capitst.o cbiapts.o cbkittst.o \
44 ccaltst.o cctest.o ccapitst.o ccolltst.o encoll.o cconvtst.o ccurrtst.o \
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 \
47 cmsccoll.o cmsgtst.o cposxtst.o cldrtest.o \
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 \
50 cbiditst.o cbididat.o eurocreg.o udatatst.o utf16tst.o utransts.o \
51 ncnvfbts.o ncnvtst.o putiltst.o cstrtest.o udatpg_test.o utf8tst.o \
52 stdnmtst.o usrchtst.o custrtrn.o sorttest.o trietest.o usettest.o \
53 uenumtst.o utmstest.o currtest.o \
54 idnatest.o nfsprep.o spreptst.o sprpdata.o \
55 hpmufn.o tracetst.o reapits.o utexttst.o ucsdetst.o
57 DEPS = $(OBJECTS:.o=.d)
59 -include Makefile.local
61 ## List of phony targets
62 .PHONY : all all-local install install-local clean clean-local \
63 distclean distclean-local dist dist-local check check-local
68 ## List of standard targets
70 install: install-local
72 distclean : distclean-local
74 check: all check-local
83 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
84 $(RMV) $(OBJECTS) $(TARGET)
86 distclean-local: clean-local
89 check-local: all-local
90 $(INVOKE) ./$(TARGET) $(CINTLTST_OPTS)
92 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
94 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
96 $(TARGET) : $(OBJECTS)
97 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
100 ifeq (,$(MAKECMDGOALS))
103 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
104 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)