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


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = tmac.p pxin0.n pxin1.n pxin2.n pxin3.n pxin4.n 


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

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

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

