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


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

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

