diff options
author | wollman <wollman@FreeBSD.org> | 1995-01-11 04:29:38 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1995-01-11 04:29:38 +0000 |
commit | 3adf58231fc13b5cc4ec1d4007d0bae07ba37391 (patch) | |
tree | 829aefc1364fc0316631d57702b51b30a28febcd /share/doc/Makefile | |
parent | 2859270f6f9479424beeeaf4908bd03e497783be (diff) | |
download | FreeBSD-src-3adf58231fc13b5cc4ec1d4007d0bae07ba37391.zip FreeBSD-src-3adf58231fc13b5cc4ec1d4007d0bae07ba37391.tar.gz |
Always make the papers. Automatically make both PostScript and ASCII versions
of each document, and install both on request.
Diffstat (limited to 'share/doc/Makefile')
-rw-r--r-- | share/doc/Makefile | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/share/doc/Makefile b/share/doc/Makefile index a0e5bb6..6441184 100644 --- a/share/doc/Makefile +++ b/share/doc/Makefile @@ -1,7 +1,28 @@ -# @(#)Makefile 8.1 (Berkeley) 6/5/93 +# From: @(#)Makefile 8.1 (Berkeley) 6/5/93 +# $Id$ -SUBDIR= psd smm usd +SUBDIR= psd smm usd papers -all depend lint tags: +all-ps: + @echo ====\> Making PostScript documents + @${MAKE} ${MAKEFLAGS} PRINTER=ps ${SUBDIR} + +all-ascii: + @echo ====\> Making ASCII documents + @${MAKE} ${MAKEFLAGS} PRINTER=ascii ${SUBDIR} + +all: all-ps all-ascii + +install-ps: + @echo ====\> Installing PostScript documents + @${MAKE} ${MAKEFLAGS} PRINTER=ps realinstall + +install-ascii: + @echo ====\> Installing ASCII documents + @${MAKE} ${MAKEFLAGS} PRINTER=ascii realinstall + +install: install-ps install-ascii + +realinstall: _SUBDIRUSE .include <bsd.subdir.mk> |