]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/Makefile
Merge llvm 3.6.0rc4 from ^/vendor/llvm/dist, merge clang 3.6.0rc4 from
[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         consport.c              \
17         dbgport.c               \
18         inout.c                 \
19         ioapic.c                \
20         mem.c                   \
21         mevent.c                \
22         mptbl.c                 \
23         pci_ahci.c              \
24         pci_emul.c              \
25         pci_hostbridge.c        \
26         pci_irq.c               \
27         pci_lpc.c               \
28         pci_passthru.c          \
29         pci_virtio_block.c      \
30         pci_virtio_net.c        \
31         pci_virtio_rnd.c        \
32         pci_uart.c              \
33         pm.c                    \
34         post.c                  \
35         rtc.c                   \
36         smbiostbl.c             \
37         task_switch.c           \
38         uart_emul.c             \
39         virtio.c                \
40         xmsr.c                  \
41         spinup_ap.c
42
43 .PATH:  ${.CURDIR}/../../sys/amd64/vmm
44 SRCS+=  vmm_instruction_emul.c
45
46 LIBADD= vmmapi md util pthread
47
48 WARNS?= 2
49
50 .include <bsd.prog.mk>