#
# 
# this makefile processes the 'fortran 77 compiler' document
# for PostScript (make PS) and screen readable (make screen) versions.
#
#	
#
SRCS    = f77.ms
MACROS  = -ms
FMTR1   = psroff -t
FMTR2   = nroff


PS:	${SRCS}
	tbl ${SRCS} | eqn | ${FMTR1} ${MACROS} > f77.PS


screen:	${SRCS}
	tbl ${SRCS} | eqn | ${FMTR2} ${MACROS} > f77.text

