home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / samples / Makefile.in
Encoding:
Makefile  |  1999-08-16  |  2.2 KB  |  96 lines

  1. ## Makefile.in for ICU samples
  2. ## Stephen F. Booth
  3.  
  4. ## Shell to use
  5. SHELL = @SHELL@
  6.  
  7. ## Install directory information
  8. srcdir = @srcdir@
  9. top_srcdir = @top_srcdir@
  10. prefix = @prefix@
  11. exec_prefix = @exec_prefix@
  12.  
  13. bindir = @bindir@
  14. sbindir = @sbindir@
  15. datadir = @datadir@
  16. libdir = @libdir@
  17. includedir = @includedir@
  18.  
  19. pkgdatadir = $(datadir)/@PACKAGE@
  20. pkglibdir = $(libdir)/@PACKAGE@
  21. pkgincludedir = $(includedir)/@PACKAGE@
  22.  
  23. ## Build directory information
  24. top_builddir = ..
  25. subdir = samples
  26.  
  27. ## Install program information
  28. mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  29.  
  30. INSTALL = @INSTALL@
  31. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  32. INSTALL_DATA = @INSTALL_DATA@
  33. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  34.  
  35. ## Package information
  36. PACKAGE = @PACKAGE@
  37. VERSION = @VERSION@
  38.  
  39. ## Files to remove for 'make clean'
  40. CLEANFILES = *~
  41.  
  42. SUBDIRS = date cal
  43.  
  44. ## List of phony targets
  45. .PHONY : all all-local all-recursive install install-local        \
  46. install-recursive clean clean-local clean-recursive distclean        \
  47. distclean-local distclean-recursive dist dist-recursive dist-local    \
  48. check check-recursive check-local
  49.  
  50. ## Clear suffix list
  51. .SUFFIXES :
  52.  
  53. ## List of standard targets
  54. all: all-recursive all-local
  55. install: install-recursive install-local
  56. clean: clean-recursive clean-local
  57. distclean : distclean-recursive distclean-local
  58. dist: dist-recursive dist-local
  59. check: check-recursive check-local
  60.  
  61. ## Recursive targets
  62. all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive:
  63.     @dot_seen=no; \
  64.     target=`echo $@ | sed s/-recursive//`; \
  65.     list='$(SUBDIRS)'; for subdir in $$list; do \
  66.       echo "Making $$target in $$subdir"; \
  67.       if test "$$subdir" = "."; then \
  68.         dot_seen=yes; \
  69.         local_target="$$target-local"; \
  70.       else \
  71.         local_target="$$target"; \
  72.       fi; \
  73.       (cd $$subdir && $(MAKE) $$local_target); \
  74.     done; \
  75.     if test "$$dot_seen" = "no"; then \
  76.       $(MAKE) "$$target-local" || exit 1; \
  77.     fi
  78.  
  79. all-local:
  80.  
  81. install-local:
  82.  
  83. dist-local:
  84.  
  85. clean-local:
  86.     test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
  87.  
  88. check-local:
  89.  
  90. distclean-local:
  91.     rm -f Makefile
  92.  
  93. Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
  94.     cd $(top_builddir) \
  95.     && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
  96.