1#	Makefile	4.2	83/07/27
2#
3DESTDIR=
4
5all:
6	cd src; make ${MFLAGS}
7
8install: all
9	cd src; make ${MFLAGS} DESTDIR=${DESTDIR} install
10	cd man; make ${MFLAGS} DESTDIR=${DESTDIR} install
11
12clean:
13	cd src; make ${MFLAGS} clean
14