home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / sh-utils-1.10-src.lha / src / amiga / sh-utils-1.10 / Makefile.in < prev    next >
Makefile  |  1994-07-10  |  4KB  |  117 lines

  1. # Master Makefile for the GNU shell programming utilities.
  2. # Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. # This directory's subdirectories are mostly independent; you can cd
  19. # into them and run `make' without going through this Makefile.
  20. # To change the values of `make' variables: instead of editing Makefiles,
  21. # (1) if the variable is set in `config.status', edit `config.status'
  22. #     (which will cause the Makefiles to be regenerated when you run `make');
  23. # (2) otherwise, pass the desired values on the `make' command line.
  24.  
  25. srcdir = @srcdir@
  26. VPATH = @srcdir@
  27. @SET_MAKE@
  28.  
  29. prefix = /gnu
  30. exec_prefix = $(prefix)
  31. bindir = $(exec_prefix)/bin
  32. libdir = $(exec_prefix)/lib
  33. datadir = $(prefix)/lib
  34. mandir = $(prefix)/man/man1
  35.  
  36. SHELL = /bin/sh
  37.  
  38. DISTFILES = COPYING COPYING.LIB ChangeLog Makefile.in README INSTALL \
  39. NEWS configure configure.in config.h.in acconfig.h mkinstalldirs install.sh
  40.  
  41. # Redundant stuff for making only selected programs.
  42. PROGS = basename date dirname echo env expr false groups hostname id logname \
  43. pathchk printenv printf pwd sleep tee test true users whoami \
  44. yes @PROGS@
  45.  
  46. # Subdirectories to run make in for the primary targets.
  47. SUBDIRS = lib src man
  48.  
  49. all:
  50.     @for dir in $(SUBDIRS); do \
  51.       echo making $@ in $$dir ; \
  52.       (cd $$dir; $(MAKE) $@) ; \
  53.     done
  54.  
  55. info:
  56. install-info:
  57. dvi:
  58.  
  59. check:
  60. installcheck:
  61.  
  62. $(PROGS):
  63.     @cd lib; $(MAKE) all
  64.     @cd src; $(MAKE) $@
  65.  
  66. config.h: stamp-config ;
  67. stamp-config: config.status $(srcdir)/config.h.in
  68.     CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
  69.     touch stamp-config
  70.  
  71. Makefile: config.status Makefile.in
  72.     CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
  73.  
  74. config.status: configure
  75.     $(SHELL) config.status --recheck
  76. #configure: configure.in            ## Comment-me-out in distribution
  77. #    cd $(srcdir); autoconf     ## Comment-me-out in distribution
  78. #config.h.in: configure.in          ## Comment-me-out in distribution
  79. #    cd $(srcdir); autoheader   ## Comment-me-out in distribution
  80.  
  81. # Make sure all installation directories, e.g. $(bindir) actually exist by
  82. # making them if necessary.
  83. installdirs:
  84.     $(SHELL) $(srcdir)/mkinstalldirs \
  85.       $(bindir) $(datadir) $(libdir) $(infodir) $(mandir)
  86.  
  87. install:: installdirs
  88.  
  89. install uninstall TAGS clean mostlyclean distclean realclean::
  90.     @for dir in $(SUBDIRS); do \
  91.       echo making $@ in $$dir ; \
  92.       (cd $$dir; $(MAKE) $@) ; \
  93.     done
  94.  
  95. distclean realclean::
  96.     rm -f Makefile config.status config.h stamp-config
  97.  
  98. dist: $(DISTFILES)
  99.     echo sh-utils-`sed -e '/version_string/!d' \
  100.         -e 's/[^0-9.]*\([0-9.a-z]*\).*/\1/' -e q src/version.c` > .fname
  101.     rm -rf `cat .fname`
  102.     mkdir `cat .fname`
  103.     ln $(DISTFILES) `cat .fname`
  104.     rm -f `cat .fname`/Makefile.in
  105.     sed 's/^.*#$(empty)# Comment.*/#&/' Makefile.in \
  106.         > `cat .fname`/Makefile.in
  107.     @for dir in $(SUBDIRS); do \
  108.       mkdir `cat .fname`/$$dir; \
  109.       (cd $$dir; $(MAKE) $@); \
  110.     done
  111.     tar --gzip -chvf `cat .fname`.tar.gz `cat .fname`
  112.     rm -rf `cat .fname` .fname
  113.  
  114. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  115. # Otherwise a system limit (for SysV at least) may be exceeded.
  116. .NOEXPORT:
  117.