home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / find-3.8-src.lha / src / amiga / find-3.8 / man / Makefile.in < prev    next >
Encoding:
Makefile  |  1992-09-11  |  1.4 KB  |  56 lines

  1. # Makefile for GNU find, xargs, and locate documentation.
  2. # Do not use this makefile directly, but only from `../Makefile'.
  3. # Copyright (C) 1990 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 = find.1 locate.1 xargs.1
  25. DISTFILES = Makefile.in $(MANFILES)
  26.  
  27. all:
  28.  
  29. install: all $(MANFILES)
  30.     -cd $(srcdir); for f in $(MANFILES); do \
  31.     $(INSTALL_DATA) $$f $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  32.     done
  33.  
  34. uninstall:
  35.     for f in $(MANFILES); do rm -f \
  36.     $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  37.     done
  38.  
  39. TAGS:
  40.  
  41. clean:
  42.  
  43. mostlyclean: clean
  44.  
  45. distclean: clean
  46.     rm -f Makefile
  47.  
  48. realclean: distclean
  49.     rm -f TAGS
  50.  
  51. dist:
  52.     ln $(DISTFILES) ../`cat ../.fname`/man
  53.  
  54. # Prevent GNU make v3 from overflowing arg limit on SysV.
  55. .NOEXPORT:
  56.