aboutsummaryrefslogtreecommitdiffstats
path: root/file_cmds/mtree/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'file_cmds/mtree/Makefile')
-rw-r--r--file_cmds/mtree/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/file_cmds/mtree/Makefile b/file_cmds/mtree/Makefile
new file mode 100644
index 0000000..177c7e8
--- /dev/null
+++ b/file_cmds/mtree/Makefile
@@ -0,0 +1,22 @@
+PROG= mtree
+MAN= mtree.8
+SRCS= commoncrypto.c \
+ compare.c \
+ create.c \
+ excludes.c \
+ metrics.c \
+ misc.c \
+ mtree.c \
+ spec.c \
+ specspec.c \
+ verify.c \
+ crc.c
+
+.PATH: ${.CURDIR}/../cksum
+
+CFLAGS+=-DENABLE_MD5 -DENABLE_RMD160 -DENABLE_SHA1 -DENABLE_SHA256
+LDADD=-framework CoreFoundation
+
+BINDIR=/usr/sbin
+
+.include <bsd.prog.mk>