#
#This makefile processes the USENET document and makes it printable
#(make PS) or screen readable (make text).
#

FMTR1 = psroff -t
FMTR2 = nroff
DOC   = tmac.n manner.mn

PS:	$(DOC)
	$(FMTR1) tmac.n manner.mn  >  etiq.PS


screen:	$(DOC)
	$(FMTR2) tmac.n manner.mn  >  etiq.text
