home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GCC258_3.LHA / gcc / man / cat1 / Makefile.in.0 < prev    next >
Encoding:
Makefile  |  1993-12-07  |  1.5 KB  |  61 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. .PHONY: all
  31.  
  32. install: all
  33.     -for f in $(MANFILES); do \
  34.     ../src/ginstall -m 644 $(srcdir)/$$f \
  35.     $(mandir)/$(manprefix)`basename $$f 1`$(manext); done
  36. .PHONY: install
  37.  
  38. TAGS:
  39. .PHONY: TAGS
  40.  
  41. clean:
  42. .PHONY: clean
  43.  
  44. mostlyclean: clean
  45. .PHONY: mostlyclean
  46.  
  47. distclean: clean
  48.     rm -f Makefile
  49. .PHONY: distclean
  50.  
  51. realclean: distclean
  52.     rm -f TAGS
  53. .PHONY: realclean
  54.  
  55. dist:
  56.     ln $(DISTFILES) ../`cat ../.fname`/man
  57. .PHONY: dist
  58.  
  59. # Prevent GNU make v3 from overflowing arg limit on SysV.
  60. .NOEXPORT:
  61.