mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 14:26:03 -04:00
25 lines
379 B
Makefile
25 lines
379 B
Makefile
#
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= bhyvectl
|
|
SRCS= bhyvectl.c
|
|
PACKAGE= bhyve
|
|
|
|
MAN= bhyvectl.8
|
|
|
|
LIBADD= vmmapi util
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/amd64/vmm
|
|
|
|
.if ${MK_BHYVE_SNAPSHOT} != "no"
|
|
LIBADD+= nv
|
|
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>
|