Makefile.in (3022B)
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-2014, International Business Machines 6 # Corporation and others. All Rights Reserved. 7 # 8 #****************************************************************************** 9 ## Makefile.in for ICU - test/iotest 10 11 ## Source directory information 12 srcdir = @srcdir@ 13 top_srcdir = @top_srcdir@ 14 15 top_builddir = ../.. 16 17 ## All the flags and other definitions are included here. 18 include $(top_builddir)/icudefs.mk 19 20 ## Build directory information 21 subdir = test/iotest 22 23 ## Extra files to remove for 'make clean' 24 CLEANFILES = *~ $(DEPS) $(TESTXML) 25 26 ## Target information 27 TARGET = iotest$(EXEEXT) 28 29 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../ 30 # Simplify the path for Unix 31 BUILDDIR := $(BUILDDIR:test/iotest/../../=) 32 # Simplify the path for Windows 33 BUILDDIR := $(BUILDDIR:test\\iotest/../../=) 34 # Simplify the path for Windows 98 35 BUILDDIR := $(BUILDDIR:TEST\\IOTEST/../../=) 36 37 CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ctestfw -I$(top_srcdir)/io 38 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT= -DUNISTR_FROM_STRING_EXPLICIT= 39 ifdef QNX_TARGET 40 DEFS += -D'U_TOPSRCDIR="/var/icu_tests"' -D'U_TOPBUILDDIR="/var/icu_tests/"' 41 else 42 DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"' 43 endif 44 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUIO) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 45 46 OBJECTS = iotest.o stream.o strtst.o filetst.o trnstst.o 47 48 DEPS = $(OBJECTS:.o=.d) 49 50 -include Makefile.local 51 52 ## List of phony targets 53 .PHONY : all all-local install install-local clean clean-local \ 54 distclean distclean-local dist dist-local check check-local xcheck \ 55 check-exhaustive check-exhaustive-local 56 57 ## Clear suffix list 58 .SUFFIXES : 59 60 ## List of standard targets 61 all: all-local 62 install: install-local 63 clean: clean-local 64 distclean : distclean-local 65 dist: dist-local 66 check: all check-local 67 xcheck: all xcheck-local 68 check-exhaustive: all check-exhaustive-local 69 70 all-local: $(TARGET) 71 72 install-local: 73 74 dist-local: 75 76 clean-local: 77 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 78 $(RMV) $(OBJECTS) $(TARGET) 79 80 distclean-local: clean-local 81 $(RMV) Makefile 82 83 check-local: all-local 84 $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(IOTEST_OPTS) 85 86 check-exhaustive-local: all-local 87 $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) -e 88 89 TESTXML=$(top_builddir)/test-$(TARGET).xml 90 xcheck-local: all-local 91 $(INVOKE) ./$(TARGET) $(TEST_OUTPUT_OPTS) $(IOTEST_OPTS) -x $(TESTXML) 92 93 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 94 cd $(top_builddir) \ 95 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 96 97 $(TARGET) : $(OBJECTS) 98 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS) 99 $(POST_BUILD_STEP) 100 101 ifeq (,$(MAKECMDGOALS)) 102 -include $(DEPS) 103 else 104 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 105 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) 106 -include $(DEPS) 107 endif 108 endif 109 endif