#
# this makefile processes 'debugging with dbx'
# for PostScript (make PS) and screen readable (make screen)
# versions.
#
#
#
SRCS   = dbx.ms
FMTR1  = psroff -t
FMTR2  = nroff


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


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


