#
# this makefile processes the 'porttour' document
# and formats PostScript (make PS) and screen readable (make screen) 
# versions.
#
#	
#
SRCS   = porttour1.ms porttour2.ms
FMTR1  = psroff -t
FMTR2  = nroff
REFER  = refer -p /site/docsourc/run/Ind
# this path for refer is a temporary hack


PS:	${SRCS}
	${REFER} -e ${SRCS} | tbl | ${FMTR1} -ms > porttour.PS

screen:	${SRCS}
	${REFER} -e ${SRCS} | tbl | ${FMTR2} -ms > porttour.text

