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

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

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years 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 | Annotate | Revision Log
« no previous file with comments | « icu46/source/test/threadtest/threadtest.dsw ('k') | icu46/source/tools/ctestfw/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ## Makefile.in for ICU tools
2 ## Copyright (c) 1999-2010, International Business Machines Corporation and
3 ## others. All Rights Reserved.
4
5 ## Source directory information
6 srcdir = @srcdir@
7 top_srcdir = @top_srcdir@
8
9 top_builddir = ..
10
11 include $(top_builddir)/icudefs.mk
12
13 ## Build directory information
14 subdir = tools
15
16 SUBDIRS = toolutil ctestfw makeconv genrb genbrk genctd \
17 gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \
18 gentest gennorm2 gencfu
19
20 ## List of phony targets
21 .PHONY : all all-local all-recursive install install-local \
22 install-recursive clean clean-local clean-recursive distclean \
23 distclean-local distclean-recursive dist dist-local dist-recursive \
24 check check-local check-recursive build-local
25
26 ## Clear suffix list
27 .SUFFIXES :
28
29 ## List of standard targets
30 all: all-recursive
31 install: install-recursive
32 clean: clean-local clean-recursive
33 distclean : distclean-recursive
34 dist: dist-recursive
35 check: all check-recursive
36
37 ## Recursive targets
38 all-recursive install-recursive clean-recursive distclean-recursive dist-recursi ve check-recursive:
39 @dot_seen=no; \
40 target=`echo $@ | sed s/-recursive//`; \
41 list='$(SUBDIRS)'; for subdir in $$list; do \
42 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
43 if test "$$subdir" = "."; then \
44 dot_seen=yes; \
45 local_target="$$target-local"; \
46 else \
47 local_target="$$target"; \
48 fi; \
49 (cd $$subdir && $(MAKE) $$local_target) || exit; \
50 done; \
51 if test "$$dot_seen" = "no"; then \
52 $(MAKE) "$$target-local" || exit; \
53 fi
54
55 all-local: build-local
56
57
58 ## Files to remove for 'make clean'
59 CLEANFILES = *~
60
61 install-local:
62
63 dist-local:
64
65 clean-local:
66 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
67
68 # Clean up any old variations..
69 distclean-local: clean-local
70 $(RMV) Makefile
71
72 build-local:
73
74 check-local:
75
76 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
77 cd $(top_builddir) \
78 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
79
OLDNEW
« no previous file with comments | « icu46/source/test/threadtest/threadtest.dsw ('k') | icu46/source/tools/ctestfw/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698