68bc9a5737
The way is now open to schg and sappnd key files and directories in our tree. There are recommendations in bin/15229. PR: bin/15229 Reviewed by: imp, brian
16 lines
332 B
Makefile
16 lines
332 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= mtree
|
|
SRCS= compare.c crc.c create.c misc.c mtree.c spec.c verify.c stat_flags.c
|
|
MAN8= mtree.8
|
|
.PATH: ${.CURDIR}/../../usr.bin/cksum ${.CURDIR}/../../bin/ls
|
|
|
|
.if !defined(WORLD)
|
|
DPADD+= ${LIBMD}
|
|
LDADD+= -lmd
|
|
CFLAGS+= -DMD5 -DSHA1 -DRMD160
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|