#
# this makefile processes the 'sendmail' document
# and formats PostScript (make PS) and screen readable (make screen) 
# versions.
#
#	
#
SRCS   = intro.me
FMTR1  = psroff -t
FMTR2  = nroff


PS:	${SRCS}
	pic ${SRCS} | ${FMTR1} -me > sendmail.PS

screen:	${SRCS}
	pic ${SRCS} | ${FMTR2} -me > sendmail.text

