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


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


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