1*36593Sbostic#
2*36593Sbostic# Copyright (c) 1986 Regents of the University of California.
3*36593Sbostic# All rights reserved.  The Berkeley software License Agreement
4*36593Sbostic# specifies the terms and conditions for redistribution.
5*36593Sbostic#
6*36593Sbostic#	@(#)Makefile	5.1 (Berkeley) 01/23/89
7*36593Sbostic#
8*36593SbosticSRCS=	intro.me
9*36593SbosticMACROS=	-me
10*36593SbosticPRINTER=Pdp
11*36593SbosticTROFF=	ditroff -${PRINTER}
12*36593SbosticPIC=	pic -${PRINTER}
13*36593Sbostic
14*36593Sbosticpaper:	paper.${PRINTER}
15*36593Sbostic	lpr -${PRINTER} -n paper.${PRINTER}
16*36593Sbostic
17*36593Sbosticpaper.${PRINTER}: ${SRCS}
18*36593Sbostic	${PIC} ${SRCS} | ${TROFF} ${MACROS} -t > paper.${PRINTER}
19*36593Sbostic
20*36593Sbosticclean:
21*36593Sbostic	rm -f paper.[PT]* *.spell errs Errs make.out
22*36593Sbostic
23*36593Sbosticspell:	${SRCS}
24*36593Sbostic	@for i in ${SRCS}; do \
25*36593Sbostic		echo $$i; spell $$i | sort | comm -23 - spell.ok > $$i.spell; \
26*36593Sbostic	done
27