]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/Makefile
Add an explicit exit code 'SPINUP_AP' to tell the controlling process that an
[FreeBSD/FreeBSD.git] / usr.sbin / bhyve / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 PROG=   bhyve
6
7 SRCS=   atpic.c consport.c dbgport.c elcr.c fbsdrun.c inout.c 
8 SRCS+=  instruction_emul.c ioapic.c mevent.c
9 SRCS+=  pci_emul.c pci_hostbridge.c pci_passthru.c pci_virtio_block.c
10 SRCS+=  pci_virtio_net.c pci_uart.c pit_8254.c post.c rtc.c uart.c xmsr.c
11 SRCS+=  spinup_ap.c
12
13 NO_MAN=
14
15 DPADD=  ${LIBVMMAPI} ${LIBMD} ${LIBPTHREAD}
16 LDADD=  -lvmmapi -lmd -lpthread
17
18 WARNS?= 2
19
20 CFLAGS+= -I${.CURDIR}/../../sys
21
22 .include <bsd.prog.mk>