freebsd-dev/sbin/bectl/Makefile
Kyle Evans ad765da4e8 bectl(8): Support unjailing a boot environment
The given parameter may either be a jid, jail name, or a BE name.  In all
cases, the parameter will be resolved to a jid and bectl(8) will
sanity-check that there's actually a BE mounted at the requested jail root
before invoking jail_remove(2).
2018-07-26 03:14:58 +00:00

16 lines
252 B
Makefile

# $FreeBSD$
PROG= bectl
MAN= bectl.8
LIBADD+= be
LIBADD+= jail
LIBADD+= nvpair
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzfs/common
CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris
CFLAGS+= -DNEED_SOLARIS_BOOLEAN
.include <bsd.prog.mk>