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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = *.t

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

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