#
#This makefile processes the newsread documents and makes them printable
#(make PS) or screen readable (make text).
#

FMTR1 = psroff -t
FMTR2 = nroff
DOC   = howto.mn

PS:	$(DOC)
	$(FMTR1) tmac.n howto.mn  >  nr.PS


screen:	$(DOC)
	$(FMTR2) tmac.n howto.mn  >  nr.text
