periodic: Remove obsolete daily/status-named and weekly/clean-kvmdb
[dragonfly.git] / usr.sbin / mtree / Makefile
blob0c352936d8f3c4cc9c6d726935636f8de0df2031
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 $
4 .PATH: ${.CURDIR}/../../usr.bin/cksum
5 .PATH: ${.CURDIR}/../../sbin/md5
7 PROG= mtree
8 MAN= mtree.8
9 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
11 .if !defined(BOOTSTRAPPING)
12 SRCS+= sha1hl.c
13 CFLAGS+= -DUSE_MD5 -DUSE_SHA1 -DUSE_RMD160
14 DPADD= ${LIBMD} ${LIBCRYPTO}
15 LDADD= -lmd -lprivate_crypto
16 LDFLAGS+= ${PRIVATELIB_LDFLAGS}
17 CFLAGS+= -I${.CURDIR}/../../crypto/libressl/include
18 .endif
20 .include <bsd.prog.mk>