Changeset View
Changeset View
Standalone View
Standalone View
usr.sbin/bhyve/Makefile
| # | # | ||||
| # $FreeBSD$ | # $FreeBSD$ | ||||
| # | # | ||||
| .include <src.opts.mk> | .include <src.opts.mk> | ||||
| CFLAGS+=-I${.CURDIR}/../../contrib/lib9p | CFLAGS+=-I${.CURDIR}/../../contrib/lib9p | ||||
| CFLAGS+=-I${SRCTOP}/sys | CFLAGS+=-I${SRCTOP}/sys | ||||
| .PATH: ${SRCTOP}/sys/cam/ctl | .PATH: ${SRCTOP}/sys/cam/ctl | ||||
| PROG= bhyve | PROG= bhyve | ||||
| PACKAGE= bhyve | PACKAGE= bhyve | ||||
| MAN= bhyve.8 | MAN= bhyve.8 bhyve_config.5 | ||||
| BHYVE_SYSDIR?=${SRCTOP} | BHYVE_SYSDIR?=${SRCTOP} | ||||
| SRCS= \ | SRCS= \ | ||||
| atkbdc.c \ | atkbdc.c \ | ||||
| acpi.c \ | acpi.c \ | ||||
| audio.c \ | audio.c \ | ||||
| bhyvegc.c \ | bhyvegc.c \ | ||||
| bhyverun.c \ | bhyverun.c \ | ||||
| block_if.c \ | block_if.c \ | ||||
| bootrom.c \ | bootrom.c \ | ||||
| config.c \ | |||||
| console.c \ | console.c \ | ||||
| ctl_util.c \ | ctl_util.c \ | ||||
| ctl_scsi_all.c \ | ctl_scsi_all.c \ | ||||
| fwctl.c \ | fwctl.c \ | ||||
| gdb.c \ | gdb.c \ | ||||
| hda_codec.c \ | hda_codec.c \ | ||||
| inout.c \ | inout.c \ | ||||
| ioapic.c \ | ioapic.c \ | ||||
| ▲ Show 20 Lines • Show All 45 Lines • ▼ Show 20 Lines | |||||
| SRCS+= snapshot.c | SRCS+= snapshot.c | ||||
| .endif | .endif | ||||
| CFLAGS.kernemu_dev.c+= -I${SRCTOP}/sys/amd64 | CFLAGS.kernemu_dev.c+= -I${SRCTOP}/sys/amd64 | ||||
| .PATH: ${BHYVE_SYSDIR}/sys/amd64/vmm | .PATH: ${BHYVE_SYSDIR}/sys/amd64/vmm | ||||
| SRCS+= vmm_instruction_emul.c | SRCS+= vmm_instruction_emul.c | ||||
| LIBADD= vmmapi md pthread z util sbuf cam 9p | LIBADD= vmmapi md nv pthread z util sbuf cam 9p | ||||
| .if ${MK_CASPER} != "no" | .if ${MK_CASPER} != "no" | ||||
| LIBADD+= casper | LIBADD+= casper | ||||
| LIBADD+= cap_pwd | LIBADD+= cap_pwd | ||||
| LIBADD+= cap_grp | LIBADD+= cap_grp | ||||
| # Temporary disable capsicum, until we integrate checkpoint code with it. | # Temporary disable capsicum, until we integrate checkpoint code with it. | ||||
| #CFLAGS+=-DWITH_CASPER | #CFLAGS+=-DWITH_CASPER | ||||
| .endif | .endif | ||||
| Show All 40 Lines | |||||