Makefile revision 122141
1#	From: @(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: head/usr.sbin/mtree/Makefile 122141 2003-11-05 22:26:08Z phk $
3
4.PATH: ${.CURDIR}/../../usr.bin/cksum
5
6PROG=	mtree
7MAN=	mtree.8
8SRCS=	compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
9SRCS+=	specspec.c
10
11WARNS?=	4
12
13CFLAGS+= -DMD5 -DSHA1 -DRMD160
14DPADD=	${LIBMD}
15LDADD=	-lmd
16
17.include <bsd.prog.mk>
18