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


PS:	${SRCS}
	tbl ${SRCS} | ${FMTR1} -ms > uucpimpl.PS

screen:	${SRCS}
	tbl ${SRCS} | ${FMTR2} -ms > uucpimpl.text

