intl/icu/source/samples/Makefile.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 ## Makefile.in for ICU samples
     2 ## Copyright (c) 1999-2011, International Business Machines Corporation and
     3 ## others. All Rights Reserved.
     5 ## Install directory information
     6 srcdir = @srcdir@
     7 top_srcdir = @top_srcdir@
     9 top_builddir = ..
    11 include $(top_builddir)/icudefs.mk
    13 ## Build directory information
    14 subdir = samples
    16 ## Platform-specific setup
    17 include @platform_make_fragment@
    19 ## Files to remove for 'make clean'
    20 CLEANFILES = *~
    22 SUBDIRS = date cal
    23 ALLSUBDIRS = break case csdet datefmt msgfmt numfmt props translit ucnv udata ufortune uresb ustring citer uciter8 ugrep
    25 ## List of phony targets
    26 .PHONY : all all-local all-recursive install install-local		\
    27 install-recursive clean clean-local clean-recursive distclean		\
    28 distclean-local distclean-recursive dist dist-recursive dist-local	\
    29 check check-recursive check-local check-exhaustive
    31 ## Clear suffix list
    32 .SUFFIXES :
    34 ## List of standard targets
    35 all: all-recursive all-local
    36 install: install-recursive install-local
    37 clean: clean-recursive clean-local
    38 distclean : distclean-recursive distclean-local
    39 dist: dist-recursive dist-local
    41 all-samples: all-samples-recursive
    42 clean-samples: clean-samples-recursive
    43 check-samples: check-samples-recursive
    45 # Note (srl 4/15/2002) do  NOT recursively check samples for 2.1, look into testing them in the future.
    46 #check: all check-recursive check-local
    47 check: all check-local
    49 check-exhaustive: check
    51 ## Recursive targets
    52 all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
    53 	@dot_seen=no; \
    54 	target=`echo $@ | sed s/-recursive//`; \
    55 	list='$(SUBDIRS)'; for subdir in $$list; do \
    56 	  echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
    57 	  if test "$$subdir" = "."; then \
    58 	    dot_seen=yes; \
    59 	    local_target="$$target-local"; \
    60 	  else \
    61 	    local_target="$$target"; \
    62 	  fi; \
    63 	  (cd $$subdir && $(MAKE) $$local_target) || exit; \
    64 	done; \
    65 	if test "$$dot_seen" = "no"; then \
    66 	  $(MAKE) "$$target-local" || exit; \
    67 	fi
    69 all-samples-recursive check-samples-recursive clean-samples-recursive:
    70 	@dot_seen=no; \
    71 	target=`echo $@ | sed s/-recursive//`; \
    72 	subtarget=`echo $@ | sed s/-samples-recursive//`; \
    73 	list='$(SUBDIRS) $(ALLSUBDIRS)'; for subdir in $$list; do \
    74 	  echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$subtarget' in \`$$subdir'"; \
    75 	  if test "$$subdir" = "."; then \
    76 	    dot_seen=yes; \
    77 	    local_target="$$subtarget-local"; \
    78 	  else \
    79 	    local_target="$$subtarget"; \
    80 	  fi; \
    81 	  (cd $$subdir && $(MAKE) $$local_target) || exit; \
    82 	done; \
    83 	if test "$$dot_seen" = "no"; then \
    84 	  $(MAKE) "$$subtarget-local" || exit; \
    85 	fi
    88 all-local:
    90 install-local:
    92 dist-local:
    94 clean-local:
    95 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
    97 check-local:
    99 distclean-local: clean-local
   100 	$(RMV) Makefile
   102 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
   103 	cd $(top_builddir) \
   104 	&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status

mercurial