]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.sbin/bhyve/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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 DPADD=  ${LIBVMMAPI} ${LIBMD} ${LIBUTIL} ${LIBPTHREAD}
47 LDADD=  -lvmmapi -lmd -lutil -lpthread
48
49 WARNS?= 2
50
51 .include <bsd.prog.mk>