| OLD | NEW |
| 1 #****************************************************************************** | 1 #****************************************************************************** |
| 2 # | 2 # |
| 3 # Copyright (C) 1999-2011, 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 - tools/toolutil | 7 ## Makefile.in for ICU - tools/toolutil |
| 8 ## Steven R. Loomis | 8 ## Steven R. Loomis |
| 9 | 9 |
| 10 ## Source directory information | 10 ## Source directory information |
| 11 srcdir = @srcdir@ | 11 srcdir = @srcdir@ |
| 12 top_srcdir = @top_srcdir@ | 12 top_srcdir = @top_srcdir@ |
| 13 | 13 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 40 DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS) | 40 DYNAMICCPPFLAGS = $(SHAREDLIBCPPFLAGS) |
| 41 DYNAMICCFLAGS = $(SHAREDLIBCFLAGS) | 41 DYNAMICCFLAGS = $(SHAREDLIBCFLAGS) |
| 42 DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS) | 42 DYNAMICCXXFLAGS = $(SHAREDLIBCXXFLAGS) |
| 43 CFLAGS += $(LIBCFLAGS) | 43 CFLAGS += $(LIBCFLAGS) |
| 44 CXXFLAGS += $(LIBCXXFLAGS) | 44 CXXFLAGS += $(LIBCXXFLAGS) |
| 45 | 45 |
| 46 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n $(LIBCPPFLAGS) | 46 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n $(LIBCPPFLAGS) |
| 47 | 47 |
| 48 # from icuinfo | 48 # from icuinfo |
| 49 CPPFLAGS+= "-DU_BUILD=\"@build@\"" "-DU_HOST=\"@host@\"" "-DU_CC=\"@CC@\"" "-DU
_CXX=\"@CXX@\"" | 49 CPPFLAGS+= "-DU_BUILD=\"@build@\"" "-DU_HOST=\"@host@\"" "-DU_CC=\"@CC@\"" "-DU
_CXX=\"@CXX@\"" |
| 50 | 50 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=e
xplicit |
| 51 | 51 |
| 52 DEFS += -DU_TOOLUTIL_IMPLEMENTATION | 52 DEFS += -DU_TOOLUTIL_IMPLEMENTATION |
| 53 LDFLAGS += $(LDFLAGSICUTOOLUTIL) | 53 LDFLAGS += $(LDFLAGSICUTOOLUTIL) |
| 54 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) | 54 LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) |
| 55 | 55 |
| 56 OBJECTS = filestrm.o package.o pkgitems.o swapimpl.o toolutil.o unewdata.o \ | 56 OBJECTS = filestrm.o package.o pkgitems.o swapimpl.o toolutil.o unewdata.o \ |
| 57 denseranges.o \ | 57 collationinfo.o denseranges.o \ |
| 58 ucm.o ucmstate.o uoptions.o uparse.o \ | 58 ucm.o ucmstate.o uoptions.o uparse.o \ |
| 59 ucbuf.o xmlparser.o writesrc.o \ | 59 ucbuf.o xmlparser.o writesrc.o \ |
| 60 pkg_icu.o pkg_genc.o pkg_gencmn.o ppucd.o flagparser.o filetools.o \ | 60 pkg_icu.o pkg_genc.o pkg_gencmn.o ppucd.o flagparser.o filetools.o \ |
| 61 udbgutil.o dbgutil.o ucln_tu.o | 61 udbgutil.o dbgutil.o ucln_tu.o |
| 62 | 62 |
| 63 STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O)) | 63 STATIC_OBJECTS = $(OBJECTS:.o=.$(STATIC_O)) |
| 64 | 64 |
| 65 DEPS = $(OBJECTS:.o=.d) | 65 DEPS = $(OBJECTS:.o=.d) |
| 66 | 66 |
| 67 -include Makefile.local | 67 -include Makefile.local |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 endif | 142 endif |
| 143 | 143 |
| 144 ifeq (,$(MAKECMDGOALS)) | 144 ifeq (,$(MAKECMDGOALS)) |
| 145 -include $(DEPS) | 145 -include $(DEPS) |
| 146 else | 146 else |
| 147 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) | 147 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) |
| 148 -include $(DEPS) | 148 -include $(DEPS) |
| 149 endif | 149 endif |
| 150 endif | 150 endif |
| 151 | 151 |
| OLD | NEW |