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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = tbl.doc

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

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

