#
# this makefile processes fp documentation
# and formats PostScript (make PS) and screen readable (make screen) 
# versions.
#
#	
#
SRCS =  manDefs.rno manCh0.rno manCh1.rno\
        manCh2.rno manCh3.rno manCh4.rno manCh5.rno\
        manCh6.rno manCh7.rno refs.rno manApp.rno
FMTR1  = psroff -t
FMTR2  = nroff


PS:	${SRCS}
	tbl ${SRCS} | eqn | ${FMTR1} -me > fp.PS

screen:	${SRCS}
	tbl ${SRCS} | eqn | ${FMTR2} -me > fp.text

