michael@0: ## Makefile.in for ICU tools michael@0: ## Copyright (c) 1999-2012, International Business Machines Corporation and michael@0: ## others. All Rights Reserved. michael@0: michael@0: ## Source directory information michael@0: srcdir = @srcdir@ michael@0: top_srcdir = @top_srcdir@ michael@0: michael@0: top_builddir = .. michael@0: michael@0: include $(top_builddir)/icudefs.mk michael@0: michael@0: ## Build directory information michael@0: subdir = tools michael@0: michael@0: SUBDIRS = toolutil ctestfw makeconv genrb genbrk \ michael@0: gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \ michael@0: gentest gennorm2 gencfu gendict michael@0: michael@0: ## List of phony targets michael@0: .PHONY : all all-local all-recursive install install-local \ michael@0: install-recursive clean clean-local clean-recursive distclean \ michael@0: distclean-local distclean-recursive dist dist-local dist-recursive \ michael@0: check check-local check-recursive build-local check-exhaustive michael@0: michael@0: ## Clear suffix list michael@0: .SUFFIXES : michael@0: michael@0: ## List of standard targets michael@0: all: all-recursive michael@0: install: install-recursive michael@0: clean: clean-local clean-recursive michael@0: distclean : distclean-recursive michael@0: dist: dist-recursive michael@0: check: all check-recursive michael@0: michael@0: check-exhaustive: check michael@0: michael@0: ## Recursive targets michael@0: all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: michael@0: @dot_seen=no; \ michael@0: target=`echo $@ | sed s/-recursive//`; \ michael@0: list='$(SUBDIRS)'; for subdir in $$list; do \ michael@0: echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ michael@0: if test "$$subdir" = "."; then \ michael@0: dot_seen=yes; \ michael@0: local_target="$$target-local"; \ michael@0: else \ michael@0: local_target="$$target"; \ michael@0: fi; \ michael@0: (cd $$subdir && $(MAKE) $$local_target) || exit; \ michael@0: done; \ michael@0: if test "$$dot_seen" = "no"; then \ michael@0: $(MAKE) "$$target-local" || exit; \ michael@0: fi michael@0: michael@0: all-local: build-local michael@0: michael@0: michael@0: ## Files to remove for 'make clean' michael@0: CLEANFILES = *~ michael@0: michael@0: install-local: michael@0: michael@0: dist-local: michael@0: michael@0: clean-local: michael@0: test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) michael@0: michael@0: # Clean up any old variations.. michael@0: distclean-local: clean-local michael@0: $(RMV) Makefile michael@0: michael@0: build-local: michael@0: michael@0: check-local: michael@0: michael@0: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status michael@0: cd $(top_builddir) \ michael@0: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status michael@0: