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

Side by Side Diff: source/tools/genrb/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/gennorm2/n2builder.cpp ('k') | source/tools/genrb/derb.1.in » ('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 ## Makefile.in for ICU - tools/genrb # 2 ## Makefile.in for ICU - tools/genrb #
3 ## Copyright (c) 1999-2013, International Business Machines Corporation and # 3 ## Copyright (c) 1999-2014, International Business Machines Corporation and #
4 ## others. All Rights Reserved. # 4 ## others. All Rights Reserved. #
5 ################################################################################ # 5 ################################################################################ #
6 6
7 ## Source directory information 7 ## Source directory information
8 srcdir = @srcdir@ 8 srcdir = @srcdir@
9 top_srcdir = @top_srcdir@ 9 top_srcdir = @top_srcdir@
10 10
11 top_builddir = ../.. 11 top_builddir = ../..
12 12
13 include $(top_builddir)/icudefs.mk 13 include $(top_builddir)/icudefs.mk
(...skipping 11 matching lines...) Expand all
25 25
26 ## Extra files to remove for 'make clean' 26 ## Extra files to remove for 'make clean'
27 CLEANFILES = *~ $(MAN_FILES) $(DEPS) $(DERB_DEPS) 27 CLEANFILES = *~ $(MAN_FILES) $(DEPS) $(DERB_DEPS)
28 28
29 ## Target information 29 ## Target information
30 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 30 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
31 # derb depends on icuio 31 # derb depends on icuio
32 @ICUIO_TRUE@DERB = $(BINDIR)/$(DERB_STUB_NAME)$(EXEEXT) 32 @ICUIO_TRUE@DERB = $(BINDIR)/$(DERB_STUB_NAME)$(EXEEXT)
33 33
34 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil -I$(top_srcdir)/io 34 CPPFLAGS += -I$(top_srcdir)/common -I$(top_srcdir)/i18n -I$(srcdir)/../toolutil -I$(top_srcdir)/io
35 CPPFLAGS += -DUNISTR_FROM_CHAR_EXPLICIT=explicit -DUNISTR_FROM_STRING_EXPLICIT=e xplicit
35 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 36 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
36 37
37 OBJECTS = errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o \ 38 OBJECTS = errmsg.o genrb.o parse.o read.o reslist.o ustr.o rbutil.o \
38 wrtjava.o rle.o wrtxml.o prscmnts.o 39 wrtjava.o rle.o wrtxml.o prscmnts.o
39 DERB_OBJ = derb.o 40 DERB_OBJ = derb.o
40 41
41 DEPS = $(OBJECTS:.o=.d) 42 DEPS = $(OBJECTS:.o=.d)
42 DERB_DEPS = $(DERB_OBJ:.o=.d) 43 DERB_DEPS = $(DERB_OBJ:.o=.d)
43 44
44 -include Makefile.local 45 -include Makefile.local
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 102
102 103
103 ifeq (,$(MAKECMDGOALS)) 104 ifeq (,$(MAKECMDGOALS))
104 -include $(DEPS) 105 -include $(DEPS)
105 -include $(DERB_DEPS) 106 -include $(DERB_DEPS)
106 else 107 else
107 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 108 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
108 -include $(DEPS) 109 -include $(DEPS)
109 endif 110 endif
110 endif 111 endif
OLDNEW
« no previous file with comments | « source/tools/gennorm2/n2builder.cpp ('k') | source/tools/genrb/derb.1.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698