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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = cdoc[01234] ios.r newstuff

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

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