#
#	@(#)Makefile	5.1 (Berkeley) 1/23/89
#
#
PRINTER= -Tps
TROFF=	groff -p -e ${PRINTER}
EQN=	eqn ${PRINTER}
TBL=	tbl ${PRINTER}
PIC=	pic ${PRINTER}
LPR=	lpr -P1420

SRC=	op.me

op: op.ps
	${LPR} op.ps

op.ps:	${SRC}
	${TROFF} -me ${SRC} > op.ps

clean:
	rm -f op.ps op.me.spell errs Errs

spell:	${SRC}
	@for i in ${SRC}; do \
		echo $$i; spell $$i | sort | comm -23 - spell.ok > $$i.spell; \
	done
