1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/tools/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,81 @@ 1.4 +## Makefile.in for ICU tools 1.5 +## Copyright (c) 1999-2012, International Business Machines Corporation and 1.6 +## others. All Rights Reserved. 1.7 + 1.8 +## Source directory information 1.9 +srcdir = @srcdir@ 1.10 +top_srcdir = @top_srcdir@ 1.11 + 1.12 +top_builddir = .. 1.13 + 1.14 +include $(top_builddir)/icudefs.mk 1.15 + 1.16 +## Build directory information 1.17 +subdir = tools 1.18 + 1.19 +SUBDIRS = toolutil ctestfw makeconv genrb genbrk \ 1.20 +gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \ 1.21 +gentest gennorm2 gencfu gendict 1.22 + 1.23 +## List of phony targets 1.24 +.PHONY : all all-local all-recursive install install-local \ 1.25 +install-recursive clean clean-local clean-recursive distclean \ 1.26 +distclean-local distclean-recursive dist dist-local dist-recursive \ 1.27 +check check-local check-recursive build-local check-exhaustive 1.28 + 1.29 +## Clear suffix list 1.30 +.SUFFIXES : 1.31 + 1.32 +## List of standard targets 1.33 +all: all-recursive 1.34 +install: install-recursive 1.35 +clean: clean-local clean-recursive 1.36 +distclean : distclean-recursive 1.37 +dist: dist-recursive 1.38 +check: all check-recursive 1.39 + 1.40 +check-exhaustive: check 1.41 + 1.42 +## Recursive targets 1.43 +all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 1.44 + @dot_seen=no; \ 1.45 + target=`echo $@ | sed s/-recursive//`; \ 1.46 + list='$(SUBDIRS)'; for subdir in $$list; do \ 1.47 + echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ 1.48 + if test "$$subdir" = "."; then \ 1.49 + dot_seen=yes; \ 1.50 + local_target="$$target-local"; \ 1.51 + else \ 1.52 + local_target="$$target"; \ 1.53 + fi; \ 1.54 + (cd $$subdir && $(MAKE) $$local_target) || exit; \ 1.55 + done; \ 1.56 + if test "$$dot_seen" = "no"; then \ 1.57 + $(MAKE) "$$target-local" || exit; \ 1.58 + fi 1.59 + 1.60 +all-local: build-local 1.61 + 1.62 + 1.63 +## Files to remove for 'make clean' 1.64 +CLEANFILES = *~ 1.65 + 1.66 +install-local: 1.67 + 1.68 +dist-local: 1.69 + 1.70 +clean-local: 1.71 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.72 + 1.73 +# Clean up any old variations.. 1.74 +distclean-local: clean-local 1.75 + $(RMV) Makefile 1.76 + 1.77 +build-local: 1.78 + 1.79 +check-local: 1.80 + 1.81 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.82 + cd $(top_builddir) \ 1.83 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 1.84 +