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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = [0123456].t

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

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