1# @(#)Makefile	8.8 (Berkeley) 10/10/96
2
3ROFF=	groff
4TBL=	tbl
5
6all: exref.ps summary.ps
7
8exref.ps: ex.rm
9	${TBL} ex.rm | ${ROFF} -ms > $@
10	chmod 444 $@
11
12summary.ps: ex.summary
13	${TBL} ex.summary | ${ROFF} -ms > $@
14	chmod 444 $@
15
16clean:
17	rm -f exref.ps summary.ps
18