Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(620)

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

Issue 314660043: ticket:12766 Escaping source code (Closed) Base URL: svn+ssh://source.icu-project.org/repos/icu/trunk/icu4c/
Patch Set: Created 7 years ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 ## Makefile.in for ICU - tools/pkgdata 1 ## Makefile.in for ICU - tools/pkgdata
2 ## Copyright (C) 2016 and later: Unicode, Inc. and others. 2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html 3 ## License & terms of use: http://www.unicode.org/copyright.html
4 ## Copyright (c) 1999-2011, International Business Machines Corporation and 4 ## Copyright (c) 1999-2011, International Business Machines Corporation and
5 ## others. All Rights Reserved. 5 ## others. All Rights Reserved.
6 ## Steven R. Loomis 6 ## Steven R. Loomis
7 7
8 ## Source directory information 8 ## Source directory information
9 srcdir = @srcdir@ 9 srcdir = @srcdir@
10 top_srcdir = @top_srcdir@ 10 top_srcdir = @top_srcdir@
(...skipping 14 matching lines...) Expand all
25 ## Extra files to remove for 'make clean' 25 ## Extra files to remove for 'make clean'
26 CLEANFILES = *~ $(DEPS) $(MAN_FILES) 26 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
27 27
28 ifneq ($(PKGDATA_DEFS),) 28 ifneq ($(PKGDATA_DEFS),)
29 DEFS += $(PKGDATA_DEFS) 29 DEFS += $(PKGDATA_DEFS)
30 endif 30 endif
31 31
32 ## Target information 32 ## Target information
33 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 33 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
34 34
35 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 35 CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(srcdir)/../toolutil
36 DEFS += -DUDATA_SO_SUFFIX=\".$(SO)\" -DSTATIC_O=\"$(STATIC_O)\" 36 DEFS += -DUDATA_SO_SUFFIX=\".$(SO)\" -DSTATIC_O=\"$(STATIC_O)\"
37 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 37 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
38 38
39 OBJECTS = pkgdata.o pkgtypes.o 39 OBJECTS = pkgdata.o pkgtypes.o
40 40
41 DEPS = $(OBJECTS:.o=.d) 41 DEPS = $(OBJECTS:.o=.d)
42 42
43 ## List of phony targets 43 ## List of phony targets
44 .PHONY : all all-local install install-local clean clean-local \ 44 .PHONY : all all-local install install-local clean clean-local \
45 distclean distclean-local dist dist-local check check-local install-man 45 distclean distclean-local dist dist-local check check-local install-man
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 92
93 93
94 ifeq (,$(MAKECMDGOALS)) 94 ifeq (,$(MAKECMDGOALS))
95 -include $(DEPS) 95 -include $(DEPS)
96 else 96 else
97 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 97 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
98 -include $(DEPS) 98 -include $(DEPS)
99 endif 99 endif
100 endif 100 endif
101 101
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b