]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/Makefile
Merge sendmail 8.15.2 to HEAD
[FreeBSD/FreeBSD.git] / usr.sbin / bhyve / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 PROG=   bhyve
6
7 DEBUG_FLAGS= -g -O0
8
9 MAN=    bhyve.8
10
11 SRCS=   \
12         atkbdc.c                \
13         acpi.c                  \
14         bhyverun.c              \
15         block_if.c              \
16         bootrom.c               \
17         consport.c              \
18         dbgport.c               \
19         inout.c                 \
20         ioapic.c                \
21         mem.c                   \
22         mevent.c                \
23         mptbl.c                 \
24         pci_ahci.c              \
25         pci_emul.c              \
26         pci_hostbridge.c        \
27         pci_irq.c               \
28         pci_lpc.c               \
29         pci_passthru.c          \
30         pci_virtio_block.c      \
31         pci_virtio_net.c        \
32         pci_virtio_rnd.c        \
33         pci_uart.c              \
34         pm.c                    \
35         post.c                  \
36         rtc.c                   \
37         smbiostbl.c             \
38         task_switch.c           \
39         uart_emul.c             \
40         virtio.c                \
41         xmsr.c                  \
42         spinup_ap.c
43
44 .PATH:  ${.CURDIR}/../../sys/amd64/vmm
45 SRCS+=  vmm_instruction_emul.c
46
47 LIBADD= vmmapi md pthread
48
49 WARNS?= 2
50
51 .include <bsd.prog.mk>