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


FMTR1 = psroff -t
FMTR2 = nroff
DOC1  = ms
DOC2  = refcard


PS:	
	tbl $(DOC1) | $(FMTR1) -ms   > macros.PS
	tbl $(DOC2) | eqn | $(FMTR1) -ms   > refcard.PS
	

screen:	
	tbl $(DOC1) | $(FMTR2) -ms   > macros.text
	tbl $(DOC2) | eqn | $(FMTR2) -ms   > refcard.text

