home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / f / find37.zip / find-3.7 / man / Makefile.in < prev    next >
Makefile  |  1992-06-04  |  1KB  |  59 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. .PHONY: all
  29.  
  30. install: all $(MANFILES)
  31.     -cd $(srcdir); for f in $(MANFILES); do \
  32.     $(INSTALL_DATA) $$f $(mandir)/$(manprefix)`basename $$f 1`$(manext); \
  33.     done
  34. .PHONY: install
  35.  
  36. TAGS:
  37. .PHONY: TAGS
  38.  
  39. clean:
  40. .PHONY: clean
  41.  
  42. mostlyclean: clean
  43. .PHONY: mostlyclean
  44.  
  45. distclean: clean
  46.     rm -f Makefile
  47. .PHONY: distclean
  48.  
  49. realclean: distclean
  50.     rm -f TAGS
  51. .PHONY: realclean
  52.  
  53. dist:
  54.     ln $(DISTFILES) ../`cat ../.fname`/man
  55. .PHONY: dist
  56.  
  57. # Prevent GNU make v3 from overflowing arg limit on SysV.
  58. .NOEXPORT:
  59.