blob: 7975589c66fa2117119de99bbaf6ca5710811e41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2014 Pluribus Networks Inc.
# Copyright (c) 2018, Joyent, Inc.
#
PROG = bhyve
ZHYVE = $(ROOT)/usr/lib/brand/bhyve/zhyve
include ../Makefile.cmd
include ../Makefile.cmd.64
include ../Makefile.ctf
SRCS = acpi.c \
atkbdc.c \
bhyvegc.c \
bhyverun.c \
block_if.c \
bootrom.c \
console.c \
consport.c \
dbgport.c \
fwctl.c \
inout.c \
ioapic.c \
mem.c \
mptbl.c \
pci_ahci.c \
pci_e82545.c \
pci_emul.c \
pci_fbuf.c \
pci_hostbridge.c \
pci_irq.c \
pci_lpc.c \
pci_passthru.c \
pci_uart.c \
pci_virtio_block.c \
pci_virtio_net.c \
pci_virtio_rnd.c \
pci_virtio_viona.c \
pci_xhci.c \
pm.c \
post.c \
ps2kbd.c \
ps2mouse.c \
rfb.c \
rtc.c \
smbiostbl.c \
sockstream.c \
task_switch.c \
uart_emul.c \
usb_emul.c \
usb_mouse.c \
vga.c \
virtio.c \
vmm_instruction_emul.c \
xmsr.c \
spinup_ap.c \
bhyve_sol_glue.c \
zhyve.c
OBJS = $(SRCS:.c=.o)
CLEANFILES = $(PROG)
CLOBBERFILES = $(ROOTUSRSBINPROG) $(ZHYVE)
CFLAGS += $(CCVERBOSE) -_gcc=-Wimplicit-function-declaration -_gcc=-Wno-parentheses
CPPFLAGS = -I$(COMPAT)/freebsd -I$(CONTRIB)/freebsd \
-I$(COMPAT)/freebsd/amd64 -I$(CONTRIB)/freebsd/amd64 \
-I$(CONTRIB)/freebsd/dev/usb/controller \
-I$(CONTRIB)/freebsd/dev/mii \
-I$(SRC)/uts/common/io/e1000api \
$(CPPFLAGS.master) \
-I$(ROOT)/usr/platform/i86pc/include \
-I$(SRC)/uts/i86pc/io/vmm \
-I$(SRC)/uts/common \
-I$(SRC)/uts/i86pc \
-I$(SRC)/lib/libdladm/common \
-DWITHOUT_CAPSICUM
LDLIBS += -lsocket -lnsl -ldlpi -ldladm -lmd -luuid -lvmmapi -lz -lnvpair
POST_PROCESS += ; $(GENSETDEFS) $@
.KEEP_STATE:
# Real main is in zhyve.c
bhyverun.o := CPPFLAGS += -Dmain=bhyve_main
all: $(PROG)
$(PROG): $(OBJS)
$(LINK.c) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS)
$(POST_PROCESS)
install: all $(ROOTUSRSBINPROG)
$(RM) $(ZHYVE)
$(LN) $(ROOTUSRSBIN)/$(PROG) $(ZHYVE)
clean:
$(RM) $(OBJS) $(CLEANFILES)
lint: lint_SRCS
include ../Makefile.targ
%.o: $(SRC)/uts/i86pc/io/vmm/%.c
$(COMPILE.c) $<
$(POST_PROCESS_O)
|