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


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

PS:	$(DOC)
	$(FMTR1) -me $(DOC)  > output.PS
	

screen:	$(DOC)
	$(FMTR2) -me $(DOC)  > output.text
