#
#This makefile formats the fsck sources into a PostScript (.PS) or 
#screen readable (.text) version.
#

FMTR1 = psroff -t
FMTR2 = nroff
DOC = 0.t 1.t 2.t 3.t 4.t

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

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