1 #******************************************************************************
3 # Copyright (C) 1999-2010, International Business Machines
4 # Corporation and others. All Rights Reserved.
6 #******************************************************************************
7 ## Makefile.in for ICU - test/iotest
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
21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS) $(TESTXML)
25 TARGET = iotest$(EXEEXT)
27 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../
28 # Simplify the path for Unix
29 BUILDDIR := $(BUILDDIR:test/iotest/../../=)
30 # Simplify the path for Windows
31 BUILDDIR := $(BUILDDIR:test\\iotest/../../=)
32 # Simplify the path for Windows 98
33 BUILDDIR := $(BUILDDIR:TEST\\IOTEST/../../=)
35 ifneq ($(top_builddir),$(top_srcdir))
36 CPPFLAGS += -I$(top_builddir)/common
38 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/io
39 DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"'
40 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUIO) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
42 OBJECTS = iotest.o stream.o strtst.o filetst.o trnstst.o
44 DEPS = $(OBJECTS:.o=.d)
46 -include Makefile.local
48 ## List of phony targets
49 .PHONY : all all-local install install-local clean clean-local \
50 distclean distclean-local dist dist-local check check-local xcheck
55 ## List of standard targets
57 install: install-local
59 distclean : distclean-local
61 check: all check-local
62 xcheck: all xcheck-local
71 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
72 $(RMV) $(OBJECTS) $(TARGET)
74 distclean-local: clean-local
77 check-local: all-local
78 $(INVOKE) ./$(TARGET) $(IOTEST_OPTS)
80 TESTXML=$(top_builddir)/test-$(TARGET).xml
81 xcheck-local: all-local
82 $(INVOKE) ./$(TARGET) $(IOTEST_OPTS) -x $(TESTXML)
84 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
86 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
88 $(TARGET) : $(OBJECTS)
89 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
92 ifeq (,$(MAKECMDGOALS))
95 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
96 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),)