mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-25 11:37:56 +00:00
a85228f164
commit 70b8f0c127db6b80411789d237b403cc64a93573 Author: Brooks Davis <brooks@one-eyed-alien.net> Date: Mon Jan 27 22:53:57 2014 +0000 Move mtree.5 to usr.sbin/nmtree. Remove note that mtree 2.0 format files aren't supported. MFC after: 4 weeks Sponsored by: DARPA, AFRL
27 lines
599 B
Makefile
27 lines
599 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../contrib/mtree
|
|
|
|
PROG= mtree
|
|
MAN= mtree.5 mtree.8
|
|
SRCS= compare.c crc.c create.c excludes.c getid.c misc.c mtree.c \
|
|
only.c spec.c specspec.c verify.c
|
|
LDADD+= -lmd -lutil
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../contrib/mknod
|
|
.PATH: ${.CURDIR}/../../contrib/mknod
|
|
SRCS+= pack_dev.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../lib/libnetbsd
|
|
LIBNETBSDDIR= ${.OBJDIR}/../../lib/libnetbsd
|
|
LIBNETBSD= ${LIBNETBSDDIR}/libnetbsd.a
|
|
DPADD+= ${LIBNETBSD}
|
|
LDADD+= ${LIBNETBSD}
|
|
|
|
LINKS= ${BINDIR}/mtree ${BINDIR}/nmtree
|
|
MLINKS= mtree.8 nmtree.8
|
|
|
|
.include <bsd.prog.mk>
|