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


PS:	${SRCS}
	${FMTR1} -ms ${SRCS} > sccs.PS


screen:	${SRCS}
	${FMTR2} -ms ${SRCS} > sccs.text


