#this makefile formats the 'notesfile reference manual' into a
#PostScript (make PS) or a screen readable (make screen) file.

FMTR1 = psroff -t
FMTR2 = nroff
DOC   = 0.short 1 2.1 2.2 4.0 4.1 4.2 4.3 4.4 4.5

PS:	$(DOC)
	$(FMTR1) macros $(DOC) vtoc > notes.PS

screen:	$(DOC)
	$(FMTR2) macros $(DOC) vtoc > notes.text
