1## Makefile.in for ICU tools 2## Copyright (c) 1999-2012, International Business Machines Corporation and 3## others. All Rights Reserved. 4 5## Source directory information 6srcdir = @srcdir@ 7top_srcdir = @top_srcdir@ 8 9top_builddir = .. 10 11include $(top_builddir)/icudefs.mk 12 13## Build directory information 14subdir = tools 15 16SUBDIRS = toolutil ctestfw makeconv genrb genbrk \ 17gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \ 18gentest gennorm2 gencfu gendict 19 20## List of phony targets 21.PHONY : all all-local all-recursive install install-local \ 22install-recursive clean clean-local clean-recursive distclean \ 23distclean-local distclean-recursive dist dist-local dist-recursive \ 24check check-local check-recursive build-local check-exhaustive 25 26## Clear suffix list 27.SUFFIXES : 28 29## List of standard targets 30all: all-recursive 31install: install-recursive 32clean: clean-local clean-recursive 33distclean : distclean-recursive 34dist: dist-recursive 35check: all check-recursive 36 37check-exhaustive: check 38 39## Recursive targets 40all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 41 @dot_seen=no; \ 42 target=`echo $@ | sed s/-recursive//`; \ 43 list='$(SUBDIRS)'; for subdir in $$list; do \ 44 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ 45 if test "$$subdir" = "."; then \ 46 dot_seen=yes; \ 47 local_target="$$target-local"; \ 48 else \ 49 local_target="$$target"; \ 50 fi; \ 51 (cd $$subdir && $(MAKE) $$local_target) || exit; \ 52 done; \ 53 if test "$$dot_seen" = "no"; then \ 54 $(MAKE) "$$target-local" || exit; \ 55 fi 56 57all-local: build-local 58 59 60## Files to remove for 'make clean' 61CLEANFILES = *~ 62 63install-local: 64 65dist-local: 66 67clean-local: 68 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 69 70# Clean up any old variations.. 71distclean-local: clean-local 72 $(RMV) Makefile 73 74build-local: 75 76check-local: 77 78Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 79 cd $(top_builddir) \ 80 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status 81 82