66cbdc8aab
remove the format specification from mtree.8. I also need to reconcile a few issues between this mtree.5 and what is actually implemented in FreeBSD's mtree utility. MFC after: 30 days
18 lines
323 B
Makefile
18 lines
323 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/cksum
|
|
|
|
PROG= mtree
|
|
MAN= mtree.8 mtree.5
|
|
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
|
|
SRCS+= specspec.c
|
|
|
|
WARNS?= 4
|
|
|
|
CFLAGS+= -DMD5 -DSHA1 -DRMD160 -DSHA256
|
|
DPADD= ${LIBMD}
|
|
LDADD= -lmd
|
|
|
|
.include <bsd.prog.mk>
|