1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/icu/source/samples/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,104 @@ 1.4 +## Makefile.in for ICU samples 1.5 +## Copyright (c) 1999-2011, International Business Machines Corporation and 1.6 +## others. All Rights Reserved. 1.7 + 1.8 +## Install 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 = samples 1.18 + 1.19 +## Platform-specific setup 1.20 +include @platform_make_fragment@ 1.21 + 1.22 +## Files to remove for 'make clean' 1.23 +CLEANFILES = *~ 1.24 + 1.25 +SUBDIRS = date cal 1.26 +ALLSUBDIRS = break case csdet datefmt msgfmt numfmt props translit ucnv udata ufortune uresb ustring citer uciter8 ugrep 1.27 + 1.28 +## List of phony targets 1.29 +.PHONY : all all-local all-recursive install install-local \ 1.30 +install-recursive clean clean-local clean-recursive distclean \ 1.31 +distclean-local distclean-recursive dist dist-recursive dist-local \ 1.32 +check check-recursive check-local check-exhaustive 1.33 + 1.34 +## Clear suffix list 1.35 +.SUFFIXES : 1.36 + 1.37 +## List of standard targets 1.38 +all: all-recursive all-local 1.39 +install: install-recursive install-local 1.40 +clean: clean-recursive clean-local 1.41 +distclean : distclean-recursive distclean-local 1.42 +dist: dist-recursive dist-local 1.43 + 1.44 +all-samples: all-samples-recursive 1.45 +clean-samples: clean-samples-recursive 1.46 +check-samples: check-samples-recursive 1.47 + 1.48 +# Note (srl 4/15/2002) do NOT recursively check samples for 2.1, look into testing them in the future. 1.49 +#check: all check-recursive check-local 1.50 +check: all check-local 1.51 + 1.52 +check-exhaustive: check 1.53 + 1.54 +## Recursive targets 1.55 +all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: 1.56 + @dot_seen=no; \ 1.57 + target=`echo $@ | sed s/-recursive//`; \ 1.58 + list='$(SUBDIRS)'; for subdir in $$list; do \ 1.59 + echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ 1.60 + if test "$$subdir" = "."; then \ 1.61 + dot_seen=yes; \ 1.62 + local_target="$$target-local"; \ 1.63 + else \ 1.64 + local_target="$$target"; \ 1.65 + fi; \ 1.66 + (cd $$subdir && $(MAKE) $$local_target) || exit; \ 1.67 + done; \ 1.68 + if test "$$dot_seen" = "no"; then \ 1.69 + $(MAKE) "$$target-local" || exit; \ 1.70 + fi 1.71 + 1.72 +all-samples-recursive check-samples-recursive clean-samples-recursive: 1.73 + @dot_seen=no; \ 1.74 + target=`echo $@ | sed s/-recursive//`; \ 1.75 + subtarget=`echo $@ | sed s/-samples-recursive//`; \ 1.76 + list='$(SUBDIRS) $(ALLSUBDIRS)'; for subdir in $$list; do \ 1.77 + echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$subtarget' in \`$$subdir'"; \ 1.78 + if test "$$subdir" = "."; then \ 1.79 + dot_seen=yes; \ 1.80 + local_target="$$subtarget-local"; \ 1.81 + else \ 1.82 + local_target="$$subtarget"; \ 1.83 + fi; \ 1.84 + (cd $$subdir && $(MAKE) $$local_target) || exit; \ 1.85 + done; \ 1.86 + if test "$$dot_seen" = "no"; then \ 1.87 + $(MAKE) "$$subtarget-local" || exit; \ 1.88 + fi 1.89 + 1.90 + 1.91 +all-local: 1.92 + 1.93 +install-local: 1.94 + 1.95 +dist-local: 1.96 + 1.97 +clean-local: 1.98 + test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) 1.99 + 1.100 +check-local: 1.101 + 1.102 +distclean-local: clean-local 1.103 + $(RMV) Makefile 1.104 + 1.105 +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 1.106 + cd $(top_builddir) \ 1.107 + && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status