| OLD | NEW |
| 1 #****************************************************************************** | 1 #****************************************************************************** |
| 2 # | 2 # |
| 3 # Copyright (C) 1999-2013, International Business Machines | 3 # Copyright (C) 1999-2014, International Business Machines |
| 4 # Corporation and others. All Rights Reserved. | 4 # Corporation and others. All Rights Reserved. |
| 5 # | 5 # |
| 6 #****************************************************************************** | 6 #****************************************************************************** |
| 7 ## Makefile.in for ICU - test/iotest | 7 ## Makefile.in for ICU - test/iotest |
| 8 | 8 |
| 9 ## Source directory information | 9 ## Source directory information |
| 10 srcdir = @srcdir@ | 10 srcdir = @srcdir@ |
| 11 top_srcdir = @top_srcdir@ | 11 top_srcdir = @top_srcdir@ |
| 12 | 12 |
| 13 top_builddir = ../.. | 13 top_builddir = ../.. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../ | 27 BUILDDIR := $(CURR_SRCCODE_FULL_DIR)/../../ |
| 28 # Simplify the path for Unix | 28 # Simplify the path for Unix |
| 29 BUILDDIR := $(BUILDDIR:test/iotest/../../=) | 29 BUILDDIR := $(BUILDDIR:test/iotest/../../=) |
| 30 # Simplify the path for Windows | 30 # Simplify the path for Windows |
| 31 BUILDDIR := $(BUILDDIR:test\\iotest/../../=) | 31 BUILDDIR := $(BUILDDIR:test\\iotest/../../=) |
| 32 # Simplify the path for Windows 98 | 32 # Simplify the path for Windows 98 |
| 33 BUILDDIR := $(BUILDDIR:TEST\\IOTEST/../../=) | 33 BUILDDIR := $(BUILDDIR:TEST\\IOTEST/../../=) |
| 34 | 34 |
| 35 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ct
estfw -I$(top_srcdir)/io | 35 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(top_srcdir)/tools/ct
estfw -I$(top_srcdir)/io |
| 36 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT= -DUNISTR_FROM_STRING_EXPLICIT= |
| 36 DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"' | 37 DEFS += -D'U_TOPSRCDIR="$(top_srcdir)/"' -D'U_TOPBUILDDIR="$(BUILDDIR)"' |
| 37 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUIO) $(LIBICUI18N) $(LIBICUUC) $(D
EFAULT_LIBS) $(LIB_M) | 38 LIBS = $(LIBCTESTFW) $(LIBICUTOOLUTIL) $(LIBICUIO) $(LIBICUI18N) $(LIBICUUC) $(D
EFAULT_LIBS) $(LIB_M) |
| 38 | 39 |
| 39 OBJECTS = iotest.o stream.o strtst.o filetst.o trnstst.o | 40 OBJECTS = iotest.o stream.o strtst.o filetst.o trnstst.o |
| 40 | 41 |
| 41 DEPS = $(OBJECTS:.o=.d) | 42 DEPS = $(OBJECTS:.o=.d) |
| 42 | 43 |
| 43 -include Makefile.local | 44 -include Makefile.local |
| 44 | 45 |
| 45 ## List of phony targets | 46 ## List of phony targets |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 ifeq (,$(MAKECMDGOALS)) | 95 ifeq (,$(MAKECMDGOALS)) |
| 95 -include $(DEPS) | 96 -include $(DEPS) |
| 96 else | 97 else |
| 97 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 98 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 98 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) | 99 ifneq ($(patsubst %install,,$(MAKECMDGOALS)),) |
| 99 -include $(DEPS) | 100 -include $(DEPS) |
| 100 endif | 101 endif |
| 101 endif | 102 endif |
| 102 endif | 103 endif |
| 103 | 104 |
| OLD | NEW |