#
#This makefile formats the "learn" document for PostScript (make PS)
#or screen readable versions (make screen).
#
#This file originally wanted to be made using refer, but it wouldn't work
#that way, so now it doesn't do it at all.


FMTR1 = psroff -t
FMTR2 = nroff
DOC   = p0 p1 p2 p3 p4 p5 p6 p7


PS:	$(DOC)
	tbl $(DOC) | $(FMTR1) -ms > learn.PS




screen:	$(DOC)
	tbl $(DOC) | $(FMTR2) -ms > learn.text


