]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bhyve/Makefile
Move the atpit device model from userspace into vmm.ko for better
[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         acpi.c                  \
13         bhyverun.c              \
14         block_if.c              \
15         consport.c              \
16         dbgport.c               \
17         inout.c                 \
18         ioapic.c                \
19         mem.c                   \
20         mevent.c                \
21         mptbl.c                 \
22         pci_ahci.c              \
23         pci_emul.c              \
24         pci_hostbridge.c        \
25         pci_lpc.c               \
26         pci_passthru.c          \
27         pci_virtio_block.c      \
28         pci_virtio_net.c        \
29         pci_uart.c              \
30         pm.c                    \
31         pmtmr.c                 \
32         post.c                  \
33         rtc.c                   \
34         smbiostbl.c             \
35         uart_emul.c             \
36         virtio.c                \
37         xmsr.c                  \
38         spinup_ap.c
39
40 .PATH:  ${.CURDIR}/../../sys/amd64/vmm
41 SRCS+=  vmm_instruction_emul.c
42
43 DPADD=  ${LIBVMMAPI} ${LIBMD} ${LIBUTIL} ${LIBPTHREAD}
44 LDADD=  -lvmmapi -lmd -lutil -lpthread
45
46 WARNS?= 2
47
48 .include <bsd.prog.mk>