Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: source/tools/toolutil/Makefile.in

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/tools/pkgdata/pkgdata.cpp ('k') | source/tools/toolutil/collationinfo.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « source/tools/pkgdata/pkgdata.cpp ('k') | source/tools/toolutil/collationinfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698