#
# this makefile processes the berkeley software architecture manual 
# for PostScript (make PS) or screen readable (make screen) versions.
# 
#
#	
#
SRCS   = 0.t 1.0.t 1.1.t 1.2.t 1.3.t 1.4.t 1.5.t 1.6.t 1.7.t \
         2.0.t 2.1.t 2.2.t 2.3.t 2.4.t 2.5.t a.t
FMTR1  = psroff -t
FMTR2  = nroff

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

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

