#This makefile formats the 'diction' document into a
#PostScript (make PS) or a text (make screen) file


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = rm[012] ap[12]

PS:	$(DOC)
	eqn $(DOC) | $(FMTR1) -ms   > diction.PS
	

screen:	$(DOC)
	eqn $(DOC) | $(FMTR2) -ms   > diction.text

