1995-02-10 03:12:42 +00:00
|
|
|
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
PROG= mtree
|
2000-07-23 06:15:54 +00:00
|
|
|
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c \
|
|
|
|
strtofflags.c
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../lib/libc/gen
|
1994-08-05 16:31:05 +00:00
|
|
|
MAN8= mtree.8
|
1994-05-26 05:23:31 +00:00
|
|
|
|
1999-03-01 02:43:42 +00:00
|
|
|
.if !defined(WORLD)
|
1995-02-10 03:12:42 +00:00
|
|
|
DPADD+= ${LIBMD}
|
|
|
|
LDADD+= -lmd
|
1999-03-01 02:43:42 +00:00
|
|
|
CFLAGS+= -DMD5 -DSHA1 -DRMD160
|
1999-02-27 03:16:28 +00:00
|
|
|
.endif
|
1995-02-10 03:12:42 +00:00
|
|
|
|
1994-05-26 05:23:31 +00:00
|
|
|
.include <bsd.prog.mk>
|