home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / fileutils-3.6 / man / Makefile.in < prev    next >
Encoding:
Makefile  |  1992-09-10  |  1.5 KB  |  57 lines

  1. # Makefile for GNU fileutils documentation.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
  4.  
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2, or (at your option)
  8. # any later version.
  9.  
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14.  
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. SHELL = /bin/sh
  20.  
  21. srcdir = @srcdir@
  22. VPATH = @srcdir@
  23.  
  24. MANFILES = chgrp.1 chown.1 chmod.1 cp.1 dd.1 df.1 du.1 install.1 \
  25. ln.1 ls.1 mkdir.1 mkfifo.1 mknod.1 mv.1 rm.1 rmdir.1 touch.1 
  26.  
  27. DISTFILES = Makefile.in $(MANFILES)
  28.  
  29. all:
  30.  
  31. install: all
  32.     -for f in $(MANFILES); do \
  33.     ../src/ginstall -m 644 $(srcdir)/$$f \
  34.     $(mandir)/$(manprefix)`basename $$f 1`$(manext); done
  35.  
  36. uninstall:
  37.     -for f in $(MANFILES); do rm -f \
  38.     $(mandir)/$(manprefix)`basename $$f 1`$(manext); done
  39.  
  40. TAGS:
  41.  
  42. clean:
  43.  
  44. mostlyclean: clean
  45.  
  46. distclean: clean
  47.     rm -f Makefile
  48.  
  49. realclean: distclean
  50.     rm -f TAGS
  51.  
  52. dist:
  53.     ln $(DISTFILES) ../`cat ../.fname`/man
  54.  
  55. # Prevent GNU make v3 from overflowing arg limit on SysV.
  56. .NOEXPORT:
  57.