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

Side by Side Diff: source/tools/gennorm2/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/gennorm2 1 ## Makefile.in for ICU - tools/gennorm2
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) 2009-2011, International Business Machines Corporation and 4 ## Copyright (c) 2009-2011, International Business Machines Corporation and
5 ## others. All Rights Reserved. 5 ## others. All Rights Reserved.
6 ## Steven R. Loomis/Markus W. Scherer 6 ## Steven R. Loomis/Markus W. Scherer
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@
11 11
12 top_builddir = ../.. 12 top_builddir = ../..
13 13
14 include $(top_builddir)/icudefs.mk 14 include $(top_builddir)/icudefs.mk
15 15
16 ## Build directory information 16 ## Build directory information
17 subdir = tools/gennorm2 17 subdir = tools/gennorm2
18 18
19 TARGET_STUB_NAME = gennorm2 19 TARGET_STUB_NAME = gennorm2
20 20
21 ## Extra files to remove for 'make clean' 21 ## Extra files to remove for 'make clean'
22 CLEANFILES = *~ $(DEPS) 22 CLEANFILES = *~ $(DEPS)
23 23
24 ## Target information 24 ## Target information
25 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT) 25 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
26 26
27 CPPFLAGS += -I$(top_srcdir)/common -I$(srcdir)/../toolutil 27 CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(srcdir)/../toolutil
28 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M) 28 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
29 29
30 OBJECTS = gennorm2.o n2builder.o 30 OBJECTS = gennorm2.o n2builder.o
31 31
32 DEPS = $(OBJECTS:.o=.d) 32 DEPS = $(OBJECTS:.o=.d)
33 33
34 ## List of phony targets 34 ## List of phony targets
35 .PHONY : all all-local install install-local clean clean-local \ 35 .PHONY : all all-local install install-local clean clean-local \
36 distclean distclean-local dist dist-local check check-local install-man 36 distclean distclean-local dist dist-local check check-local install-man
37 37
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 $(POST_BUILD_STEP) 72 $(POST_BUILD_STEP)
73 73
74 74
75 ifeq (,$(MAKECMDGOALS)) 75 ifeq (,$(MAKECMDGOALS))
76 -include $(DEPS) 76 -include $(DEPS)
77 else 77 else
78 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),) 78 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
79 -include $(DEPS) 79 -include $(DEPS)
80 endif 80 endif
81 endif 81 endif
OLDNEW

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