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

Side by Side Diff: source/stubdata/Makefile.in

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 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/samples/ustring/ustring.vcxproj.filters ('k') | source/stubdata/stubdata.c » ('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-2015, 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 stubdata 7 ## Makefile.in for ICU stubdata
8 ## Stephen F. Booth 8 ## Stephen F. Booth
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 119 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
120 120
121 ifneq ($(ENABLE_STATIC),) 121 ifneq ($(ENABLE_STATIC),)
122 $(TARGET): $(STATIC_OBJECTS) 122 $(TARGET): $(STATIC_OBJECTS)
123 $(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^ 123 $(AR) $(ARFLAGS) $(AR_OUTOPT)$@ $^
124 $(RANLIB) $@ 124 $(RANLIB) $@
125 endif 125 endif
126 126
127 ifneq ($(ENABLE_SHARED),) 127 ifneq ($(ENABLE_SHARED),)
128 $(SHARED_OBJECT): $(OBJECTS) 128 $(SHARED_OBJECT): $(OBJECTS)
129 ifeq ($(BUILD_HOST_ICU),AIX_GCC)
130 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)libicudata.so $^ $(LIBS)
131 mv libicudata.so $@
132 else
129 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) 133 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
134 endif
130 ifeq ($(ENABLE_RPATH),YES) 135 ifeq ($(ENABLE_RPATH),YES)
131 ifneq ($(wildcard $(libdir)/$(MIDDLE_SO_TARGET)),) 136 ifneq ($(wildcard $(libdir)/$(MIDDLE_SO_TARGET)),)
132 $(warning RPATH warning: --enable-rpath means test programs may use exis ting $(libdir)/$(MIDDLE_SO_TARGET)) 137 $(warning RPATH warning: --enable-rpath means test programs may use exis ting $(libdir)/$(MIDDLE_SO_TARGET))
133 endif 138 endif
134 endif 139 endif
135 140
136 ifeq ($(OS390BATCH),1) 141 ifeq ($(OS390BATCH),1)
137 $(BATCH_STUB_TARGET): $(OBJECTS) 142 $(BATCH_STUB_TARGET): $(OBJECTS)
138 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS) 143 $(SHLIB.c) $(LD_SONAME) $(OUTOPT)$@ $^ $(LIBS)
139 endif # OS390BATCH 144 endif # OS390BATCH
140 endif # ENABLE_SHARED 145 endif # ENABLE_SHARED
141 146
142 ifeq (,$(MAKECMDGOALS)) 147 ifeq (,$(MAKECMDGOALS))
143 -include $(DEPS) 148 -include $(DEPS)
144 else 149 else
145 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 150 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
146 -include $(DEPS) 151 -include $(DEPS)
147 endif 152 endif
148 endif 153 endif
149 154
OLDNEW
« no previous file with comments | « source/samples/ustring/ustring.vcxproj.filters ('k') | source/stubdata/stubdata.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698