date and time created 86/04/29 12:18:40 by cuccia
[unix-history] / usr / src / old / lisp / fp / PSD.doc / Makefile
CommitLineData
fb793893
NC
1#
2# Copyright (c) 1986 Regents of the University of California.
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6# @(#)Makefile 6.1 (Berkeley) %G%
7#
8SRCS = manDefs.rno manCh0.rno manCh1.rno\
9 manCh2.rno manCh3.rno manCh4.rno manCh5.rno\
10 manCh6.rno manCh7.rno refs.rno manApp.rno
11PRINTER=Pdp
12TBL=dtbl -${PRINTER}
13EQN=deqn -${PRINTER}
14TROFF= ditroff -${PRINTER}
15MACROS= -me
16
17paper: paper.${PRINTER}
18 lpr -${PRINTER} -n paper.${PRINTER}
19
20paper.${PRINTER}: ${SRCS}
21 ${TBL} ${SRCS} | ${EQN} | ${TROFF} ${MACROS} -t > paper.${PRINTER}
22
23clean:
24 rm -f paper.[PT]* *.spell errs Errs make.out
25
26spell: ${SRCS}
27 @for i in ${SRCS}; do \
28 echo $$i; spell $$i | sort | comm -23 - spell.ok > $$i.spell; \
29 done