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
|
|
|
|
2013-01-09 21:07:08 +00:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2001-09-24 15:38:38 +00:00
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/cksum
|
2001-07-20 06:20:32 +00:00
|
|
|
|
2013-01-09 21:07:08 +00:00
|
|
|
PROG= fmtree
|
2014-01-30 21:32:25 +00:00
|
|
|
MAN= fmtree.8
|
2001-09-24 15:38:38 +00:00
|
|
|
SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c verify.c
|
2003-11-05 22:26:08 +00:00
|
|
|
SRCS+= specspec.c
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2005-03-29 11:44:17 +00:00
|
|
|
CFLAGS+= -DMD5 -DSHA1 -DRMD160 -DSHA256
|
2014-11-25 16:57:27 +00:00
|
|
|
LIBADD= md
|
1995-02-10 03:12:42 +00:00
|
|
|
|
2013-01-09 21:07:08 +00:00
|
|
|
CLEANFILES+= fmtree.8
|
|
|
|
|
|
|
|
fmtree.8: mtree.8
|
2015-01-16 21:39:08 +00:00
|
|
|
${CP} ${.ALLSRC} ${.TARGET}
|
2013-01-09 21:07:08 +00:00
|
|
|
|
1994-05-26 05:23:31 +00:00
|
|
|
.include <bsd.prog.mk>
|