home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / textutils-1.11-src.lha / textutils-1.11 / man / Makefile.in < prev    next >
Encoding:
Makefile  |  1994-11-13  |  2.1 KB  |  85 lines

  1. # Makefile for GNU text utilities documentation.
  2. # Copyright (C) 1991, 1992, 1993, 1994 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 = @prefix@
  24. mandir = $(prefix)/man/man1
  25. manext = 1
  26. INSTALL = @INSTALL@
  27. INSTALL_DATA = @INSTALL_DATA@
  28. RM = rm
  29.  
  30. MANFILES = cat.1 cksum.1 comm.1 csplit.1 cut.1 expand.1 fmt.1 fold.1 head.1 \
  31. join.1 nl.1 od.1 paste.1 pr.1 sort.1 split.1 sum.1 tac.1 tail.1 tr.1 \
  32. unexpand.1 uniq.1 wc.1
  33.  
  34. DISTFILES = Makefile.in $(MANFILES)
  35.  
  36. all:
  37.  
  38. .SUFFIXES:
  39.  
  40. subdir = man
  41. Makefile: ../config.status Makefile.in
  42.     cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
  43.  
  44. installdirs:
  45.     $(srcdir)/../mkinstalldirs $(mandir)
  46.  
  47. transform = @program_transform_name@
  48. install: $(MANFILES) installdirs
  49.     for f in $(MANFILES); do \
  50.       name=`basename $$f 1`; \
  51.       $(INSTALL_DATA) $(srcdir)/$$f \
  52.           $(mandir)/`echo $$name|sed '$(transform)'`$(manext); \
  53.     done
  54.  
  55. uninstall:
  56.     for f in $(MANFILES); do \
  57.       name=`basename $$f 1`; \
  58.       $(RM) -f $(mandir)/`echo $$name|sed '$(transform)'`$(manext); \
  59.     done
  60.  
  61. TAGS:
  62.  
  63. check:
  64.  
  65. clean:
  66.  
  67. mostlyclean: clean
  68.  
  69. distclean: clean
  70.     $(RM) -f Makefile
  71.  
  72. realclean: distclean
  73.     $(RM) -f TAGS
  74.  
  75. distdir = ../`cat ../distname`/$(subdir)
  76. dist:
  77.     for file in $(DISTFILES); do \
  78.       ln $$file $(distdir) \
  79.         || { echo copying $$file instead; cp -p $$file $(distdir);}; \
  80.     done
  81.  
  82. # Tell versions [3.59,3.63) of GNU make not to export all variables.
  83. # Otherwise a system limit (for SysV at least) may be exceeded.
  84. .NOEXPORT:
  85.