xref: /freebsd/usr.sbin/bhyve/Makefile (revision 278d6950943a9fec2bddb037b547c04a847c54ba)
1#
2#
3
4.include <src.opts.mk>
5
6PROG=	bhyve
7PACKAGE=	bhyve
8
9MAN=	bhyve.8 bhyve_config.5
10
11BHYVE_SYSDIR?=${SRCTOP}
12
13.PATH:	${.CURDIR}/${MACHINE_CPUARCH}	\
14	${SRCTOP}/sys/libkern		\
15	${SRCTOP}/sys/cam/ctl
16
17SRCS=	\
18	acpi.c			\
19	acpi_device.c		\
20	audio.c			\
21	basl.c			\
22	bhyvegc.c		\
23	bhyverun.c		\
24	bhyverun_machdep.c	\
25	block_if.c		\
26	bootrom.c		\
27	config.c		\
28	console.c		\
29	crc16.c			\
30	ctl_scsi_all.c		\
31	ctl_util.c		\
32	hda_codec.c		\
33	iov.c			\
34	mem.c			\
35	mevent.c		\
36	net_backend_netmap.c	\
37	net_backend_slirp.c	\
38	net_backends.c		\
39	net_utils.c		\
40	pci_ahci.c		\
41	pci_e82545.c		\
42	pci_emul.c		\
43	pci_hda.c		\
44	pci_hostbridge.c	\
45	pci_irq.c		\
46	pci_nvme.c		\
47	pci_uart.c		\
48	pci_virtio_9p.c		\
49	pci_virtio_block.c	\
50	pci_virtio_console.c	\
51	pci_virtio_input.c	\
52	pci_virtio_net.c	\
53	pci_virtio_rnd.c	\
54	pci_virtio_scsi.c	\
55	pci_xhci.c		\
56	qemu_fwcfg.c		\
57	qemu_loader.c		\
58	smbiostbl.c		\
59	sockstream.c		\
60	tpm_device.c		\
61	tpm_emul_passthru.c	\
62	tpm_intf_crb.c		\
63	tpm_ppi_qemu.c		\
64	uart_backend.c		\
65	uart_emul.c		\
66	usb_emul.c		\
67	usb_mouse.c		\
68	virtio.c		\
69	vmexit.c		\
70	vmgenc.c
71
72.if ${MK_BHYVE_SNAPSHOT} != "no"
73SRCS+=	snapshot.c
74.endif
75
76.include "${MACHINE_CPUARCH}/Makefile.inc"
77
78.if defined(BHYVE_FDT_SUPPORT)
79LIBADD+= fdt
80CFLAGS+= -I${SRCTOP}/sys/contrib/libfdt
81.endif
82
83.if defined(BHYVE_GDB_SUPPORT)
84SRCS+=	gdb.c
85CFLAGS+= -DBHYVE_GDB
86.ifdef GDB_LOG
87CFLAGS+=-DGDB_LOG
88.endif
89SUBDIR+= gdb
90.endif
91
92CFLAGS+=-I${.CURDIR}		\
93	-I${.CURDIR}/../../contrib/lib9p \
94	-I${SRCTOP}/sys
95
96LIBADD+= vmmapi md nv pthread z util sbuf cam 9p
97
98.if ${MK_BHYVE_SNAPSHOT} != "no"
99LIBADD+= ucl xo
100.endif
101
102.if ${MK_INET_SUPPORT} != "no"
103CFLAGS+=-DINET
104.endif
105.if ${MK_INET6_SUPPORT} != "no"
106CFLAGS+=-DINET6
107.endif
108.if ${MK_NETGRAPH_SUPPORT} != "no"
109SRCS+=	net_backend_netgraph.c
110LIBADD+=	netgraph
111.endif
112.if ${MK_OPENSSL} == "no"
113CFLAGS+=-DNO_OPENSSL
114.else
115LIBADD+=	crypto
116CFLAGS+=-DOPENSSL_API_COMPAT=0x10100000L
117.endif
118
119CFLAGS+= -I${BHYVE_SYSDIR}/sys/dev/e1000
120CFLAGS+= -I${BHYVE_SYSDIR}/sys/dev/mii
121CFLAGS+= -I${BHYVE_SYSDIR}/sys/dev/usb/controller
122.if ${MK_BHYVE_SNAPSHOT} != "no"
123CFLAGS+= -I${SRCTOP}/contrib/libucl/include
124CFLAGS+= -DBHYVE_SNAPSHOT
125.endif
126
127# Disable thread safety analysis since it only finds very simple bugs and
128# yields many false positives.
129NO_WTHREAD_SAFETY=
130
131NO_WCAST_ALIGN=
132
133.include <bsd.prog.mk>
134