Makefile revision 99802
1#	From: @(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: head/usr.sbin/mtree/Makefile 99802 2002-07-11 18:42:53Z alfred $
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
9
10WARNS?=	4
11
12.if defined(BOOTSTRAPPING)
13.PATH: ${.CURDIR}/../../lib/libc/gen
14SRCS+=	strtofflags.c
15.else
16CFLAGS+= -DMD5 -DSHA1 -DRMD160
17DPADD=	${LIBMD}
18LDADD=	-lmd
19.endif
20
21.include <bsd.prog.mk>
22