#This makefile formats the 'refer' and the 'pubuse'documents into 
#PostScript (make PS) or a text (make screen) files


FMTR1 = psroff -t
FMTR2 = nroff
DOC1  = refer


PS:	$(DOC1) 
	cat $(DOC1) | $(FMTR1) -ms > invert.PS


screen:	$(DOC1) 
	cat $(DOC1) | $(FMTR2) -ms > invert.text
