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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = tabs csh.[1234g]

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

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