f2fdf2a1dc
These were previously necessary because the libnvpair and libzfs_core includes were not installed into the SYSROOT, being a part of the copies target in include/Makefile rather than being installed with the library. This was fixed in r337696 and the headers are now installed properly, so we may let go of the cruft.
20 lines
368 B
Makefile
20 lines
368 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bectl
|
|
MAN= bectl.8
|
|
|
|
SRCS= bectl.c bectl_jail.c bectl_list.c
|
|
|
|
LIBADD+= be
|
|
LIBADD+= jail
|
|
LIBADD+= nvpair
|
|
LIBADD+= util
|
|
|
|
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzfs/common
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common
|
|
|
|
CFLAGS+= -DNEED_SOLARIS_BOOLEAN
|
|
|
|
.include <bsd.prog.mk>
|