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


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

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

