#This makefile fromats the 'trek' document into a
#PostScript (make PS) or a text (make screen) file


FMTR1 = psroff -t
FMTR2 = nroff

PS:	trek.source
	$(FMTR1) -ms  > output.PS

screen:	trek.source
	$(FMTR2) -ms  > output.text
