#
# This makefile processes the vi documentation for PostScript (make PS)
# and screen readable (make screen) versions.
#
#
#
#
SRCS   =  vi.in vi.chars
MACROS =  -ms
TBL    =  tbl
FMTR1  =  psroff -t
FMTR2  =  nroff



PS:	$(SRCS)
	${TBL} ${SRCS} | ${FMTR1} ${MACROS} -t > vi.PS


screen:	$(SRCS)
	${TBL} ${SRCS} | ${FMTR2} ${MACROS} -t > vi.text

