#
# this makefile processes the 'lint' document
# for PostScript (make PS) and screen readable (make screen)
# versions.
#
#
#
SRCS   = lint.ms
FMTR1  = psroff -t
FMTR2  = nroff
REFER=	refer -e -p /usr/doc/run/Ind

PS:	${SRCS}
	${FMTR1} ${SRCS} -ms > lint.PS


screen:	${SRCS}
	${FMTR2} ${SRCS} -ms > lint.text

#This makefile will not function until the new sources are propagated,
#since, presently, there is not /usr/doc/run directory. -8/11/87
#
#this makefile does not use the refer function, since a document without
#a bibliography is better than no document at all. -9/26/87
