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