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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = p.mac p1 p2 p3 p4 p5 p6

PS:	$(DOC)
	cat $(DOC) | tbl | $(FMTR1) -ms > output.PS
	

screen:	$(DOC)
	cat $(DOC) | tbl | $(FMTR2) -ms > output.text
