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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = pic.man

PS:	$(DOC)
	$(FMTR1) -ms $(DOC) > pic.PS
	

screen:	$(DOC)
	$(FMTR2) -ms $(DOC) > pic.text

