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


FMTR1 = psroff -t
FMTR2 = nroff
DOC1  = pxin?.n
DOC2  = 

PS:	fig2.3.n
	/usr/ucb/soelim $(DOC) | tbl | ${FMTR1} -ms  > output.PS
	

screen:	$(DOC)
	/usr/ucb/soelim $(DOC) | tbl | ${FMTR2} -ms  > output.PS

fig2.3.n: fig2.3.raw
	  sort fig2.3.raw > fig2.3.n

