4f4065e0a2
struct checkpoint_op, enum checkpoint_opcodes, and MAX_SNAPSHOT_VMNAME are not vmm specific, move them out of the vmmapi header. They are used for the save/restore functionality that bhyve(8) provides and are better suited in usr.sbin/bhyve/snapshot.h Since bhyvectl(8) requires these, the Makefile for bhyvectl has been modified to include usr.sbin/bhyve/snapshot.h Reviewed by: kevans, grehan Differential Revision: https://reviews.freebsd.org/D28410
28 lines
390 B
Makefile
28 lines
390 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= bhyvectl
|
|
SRCS= bhyvectl.c
|
|
PACKAGE= bhyve
|
|
|
|
MAN= bhyvectl.8
|
|
|
|
LIBADD= vmmapi util
|
|
|
|
WARNS?= 3
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/amd64/vmm
|
|
|
|
.if ${MK_BHYVE_SNAPSHOT} != "no"
|
|
CFLAGS+= -DBHYVE_SNAPSHOT
|
|
|
|
# usr.sbin/bhyve/snapshot.h needs ucl header
|
|
CFLAGS+= -I${SRCTOP}/contrib/libucl/include
|
|
CFLAGS+= -I${SRCTOP}/usr.sbin/bhyve
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|