1 ## Makefile.in for ICU tools
2 ## Copyright (C) 2016 and later: Unicode, Inc. and others.
3 ## License & terms of use: http://www.unicode.org/copyright.html
4 ## Copyright (c) 1999-2012, International Business Machines Corporation and
5 ## others. All Rights Reserved.
7 ## Source directory information
9 top_srcdir = @top_srcdir@
13 include $(top_builddir)/icudefs.mk
15 ## Build directory information
18 SUBDIRS = toolutil ctestfw makeconv genrb genbrk \
19 gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \
20 gentest gennorm2 gencfu gendict
22 ifneq (@platform_make_fragment_name@,mh-cygwin-msvc)
26 ## List of phony targets
27 .PHONY : all all-local all-recursive install install-local \
28 install-recursive clean clean-local clean-recursive distclean \
29 distclean-local distclean-recursive dist dist-local dist-recursive \
30 check check-local check-recursive build-local check-exhaustive
35 ## List of standard targets
37 install: install-recursive
38 clean: clean-local clean-recursive
39 distclean : distclean-recursive
41 check: all check-recursive
43 check-exhaustive: check
46 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
48 target=`echo $@ | sed s/-recursive//`; \
49 list='$(SUBDIRS)'; for subdir in $$list; do \
50 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
51 if test "$$subdir" = "."; then \
53 local_target="$$target-local"; \
55 local_target="$$target"; \
57 (cd $$subdir && $(MAKE) $$local_target) || exit; \
59 if test "$$target" != "clean"; then \
60 if test -n "$(TZDATA)"; then \
61 echo "$(MAKE)[$(MAKELEVEL)]: Making \`tztoolobjs' in \`tzcode'"; \
62 (cd tzcode && $(MAKE) tztoolobjs) || exit; \
65 if test "$$dot_seen" = "no"; then \
66 $(MAKE) "$$target-local" || exit; \
69 all-local: build-local
72 ## Files to remove for 'make clean'
80 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
82 # Clean up any old variations..
83 distclean-local: clean-local
90 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
92 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status