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