#
# 
# this makefile processes the 'fortran I/O library' document
# for PostScript (make PS) and screen readable (make screen) versions.
#
#	
#
SRCS    = f77IO.ms
MACROS  = -ms
FMTR1   = psroff -t
FMTR2   = nroff


PS:	${SRCS}
	${FMTR1} ${MACROS} ${SRCS} > f77IO.PS


screen:	${SRCS}
	${FMTR2} ${MACROS} ${SRCS} > f77IO.text

