home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / dist / gnu / fileutils / fileutils-3.9-amiga / man / makefile.in < prev    next >
Encoding:
Makefile  |  1993-12-13  |  1.7 KB  |  69 lines

  1. # Makefile for GNU fileutils documentation.
  2. # Copyright (C) 1990, 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. SHELL = /bin/sh
  19.  
  20. srcdir = @srcdir@
  21. VPATH = @srcdir@
  22.  
  23. prefix = /usr
  24. exec_prefix = $(prefix)
  25. mandir = $(prefix)/man/man1
  26. manprefix =
  27. manext = 1
  28. INSTALL = @INSTALL@
  29. INSTALL_DATA = @INSTALL_DATA@
  30.  
  31. MANFILES = chgrp.1 chown.1 chmod.1 cp.1 dd.1 df.1 du.1 install.1 \
  32. ln.1 ls.1 mkdir.1 mkfifo.1 mknod.1 mv.1 rm.1 rmdir.1 touch.1 
  33.  
  34. DISTFILES = Makefile.in $(MANFILES)
  35.  
  36. all:
  37.  
  38. install: all $(MANFILES)
  39.     for f in $(MANFILES); do \
  40.       ../src/ginstall -m 644 $(srcdir)/$$f \
  41.       $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  42.     done
  43.  
  44. uninstall:
  45.     for f in $(MANFILES); do rm -f \
  46.       $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  47.     done
  48.  
  49. TAGS:
  50.  
  51. check:
  52.  
  53. clean:
  54.  
  55. mostlyclean: clean
  56.  
  57. distclean: clean
  58.     rm -f Makefile
  59.  
  60. realclean: distclean
  61.     rm -f TAGS
  62.  
  63. dist:
  64.     ln $(DISTFILES) ../`cat ../.fname`/man
  65.  
  66. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  67. # Otherwise a system limit (for SysV at least) may be exceeded.
  68. .NOEXPORT:
  69.