1# Id: Makefile,v 8.6 2001/01/28 15:50:07 skimo Exp  (Berkeley) Date: 2001/01/28 15:50:07 
2
3ROFF=	groff
4TBL=	tbl
5
6all: edittut.ps ../html/edittut.html
7
8../html/%.html: %.ms
9	test -d ../html || mkdir ../html
10	${TBL} $< | ${ROFF} -ms -Thtml | \
11	    sed 's/<img src="$<.*png">//' > $@
12	rm -f "$<"*png
13	chmod 444 $@
14
15%.ps: %.ms
16	${TBL} $< | ${ROFF} -ms > $@
17	chmod 444 $@
18
19clean:
20	rm -f edittut.ps ../html/edittut.html
21