#
#this makefile processes the independent troff document and makes it
#into either a PostScript (make .PS) document or a screen readable 
#version (make screen).
#


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = itroff.doc

PS:	$(DOC)
	$(FMTR1) -ms $(DOC) > itroff.PS


screen:	$(DOC)
	$(FMTR2) -ms $(DOC) > itroff.text
