home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-11-13 | 2.1 KB | 85 lines |
- # Makefile for GNU text utilities documentation.
- # Copyright (C) 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
-
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2, or (at your option)
- # any later version.
-
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
-
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
- SHELL = /bin/sh
-
- srcdir = @srcdir@
- VPATH = @srcdir@
-
- prefix = @prefix@
- mandir = $(prefix)/man/man1
- manext = 1
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- RM = rm
-
- MANFILES = cat.1 cksum.1 comm.1 csplit.1 cut.1 expand.1 fmt.1 fold.1 head.1 \
- join.1 nl.1 od.1 paste.1 pr.1 sort.1 split.1 sum.1 tac.1 tail.1 tr.1 \
- unexpand.1 uniq.1 wc.1
-
- DISTFILES = Makefile.in $(MANFILES)
-
- all:
-
- .SUFFIXES:
-
- subdir = man
- Makefile: ../config.status Makefile.in
- cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
-
- installdirs:
- $(srcdir)/../mkinstalldirs $(mandir)
-
- transform = @program_transform_name@
- install: $(MANFILES) installdirs
- for f in $(MANFILES); do \
- name=`basename $$f 1`; \
- $(INSTALL_DATA) $(srcdir)/$$f \
- $(mandir)/`echo $$name|sed '$(transform)'`$(manext); \
- done
-
- uninstall:
- for f in $(MANFILES); do \
- name=`basename $$f 1`; \
- $(RM) -f $(mandir)/`echo $$name|sed '$(transform)'`$(manext); \
- done
-
- TAGS:
-
- check:
-
- clean:
-
- mostlyclean: clean
-
- distclean: clean
- $(RM) -f Makefile
-
- realclean: distclean
- $(RM) -f TAGS
-
- distdir = ../`cat ../distname`/$(subdir)
- dist:
- for file in $(DISTFILES); do \
- ln $$file $(distdir) \
- || { echo copying $$file instead; cp -p $$file $(distdir);}; \
- done
-
- # Tell versions [3.59,3.63) of GNU make not to export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-