#
# this makefile processes the 'summary' document 
# and formats PostScript (make PS) and screen readable (make screen) 
# versions.
#
#	
#
SRCS   = vhel.mac vhel0 vhel1 vhel2 vhel3 vhel4 vhel5 vhel6 
FMTR1  = psroff -t
FMTR2  = nroff


PS:	${SRCS}
	eqn ${SRCS} | ${FMTR1} -ms > summary.PS

screen:	${SRCS}
	eqn ${SRCS} | ${FMTR2} -ms > summary.text

