xref: /dragonfly/usr.sbin/mtree/Makefile (revision 73610d44)
1#	From: @(#)Makefile	8.1 (Berkeley) 6/6/93
2# $FreeBSD: src/usr.sbin/mtree/Makefile,v 1.15.2.5 2001/09/24 15:44:22 ru Exp $
3# $DragonFly: src/usr.sbin/mtree/Makefile,v 1.2 2003/06/17 04:29:57 dillon Exp $
4
5.PATH: ${.CURDIR}/../../usr.bin/cksum
6
7PROG=	mtree
8MAN=	mtree.8
9SRCS=	compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
10
11.if defined(BOOTSTRAPPING)
12.PATH: ${.CURDIR}/../../lib/libc/gen
13SRCS+=	strtofflags.c
14.else
15CFLAGS+= -DMD5 -DSHA1 -DRMD160
16DPADD=	${LIBMD}
17LDADD=	-lmd
18.endif
19
20.include <bsd.prog.mk>
21