]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/mtree/Makefile
Fix a cryptoless world by disconnecting libmp from the build when there is no
[FreeBSD/FreeBSD.git] / usr.sbin / mtree / Makefile
1 #       From: @(#)Makefile      8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 .PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen
5
6 PROG=   mtree
7 MAN=    mtree.8
8 SRCS=   compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
9         strtofflags.c
10
11 .if !defined(WORLD)
12 CFLAGS+= -DMD5 -DSHA1 -DRMD160
13 DPADD=  ${LIBMD}
14 LDADD=  -lmd
15 .endif
16
17 .include <bsd.prog.mk>