Makefile revision 63767
1#	From: @(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: head/usr.sbin/mtree/Makefile 63767 2000-07-23 06:15:54Z imp $
3
4PROG=	mtree
5SRCS=	compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
6	strtofflags.c
7.PATH:	${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen
8MAN8=	mtree.8
9
10.if !defined(WORLD)
11DPADD+=	${LIBMD}
12LDADD+=	-lmd
13CFLAGS+= -DMD5 -DSHA1 -DRMD160
14.endif
15
16.include <bsd.prog.mk>
17