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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = t.mac t[1234]

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

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