]>
Commit | Line | Data |
---|---|---|
1 | ####################################################################### | |
2 | # Common libraries for tools and emulators | |
3 | stub-obj-y = stubs/ crypto/ | |
4 | util-obj-y = util/ qobject/ qapi/ | |
5 | util-obj-y += qmp-introspect.o qapi-types.o qapi-visit.o qapi-event.o | |
6 | ||
7 | chardev-obj-y = chardev/ | |
8 | ||
9 | ####################################################################### | |
10 | # block-obj-y is code used by both qemu system emulation and qemu-img | |
11 | ||
12 | block-obj-y += nbd/ | |
13 | block-obj-y += block.o blockjob.o | |
14 | block-obj-y += block/ scsi/ | |
15 | block-obj-y += qemu-io-cmds.o | |
16 | block-obj-$(CONFIG_REPLICATION) += replication.o | |
17 | ||
18 | block-obj-m = block/ | |
19 | ||
20 | ####################################################################### | |
21 | # crypto-obj-y is code used by both qemu system emulation and qemu-img | |
22 | ||
23 | crypto-obj-y = crypto/ | |
24 | crypto-aes-obj-y = crypto/ | |
25 | ||
26 | ####################################################################### | |
27 | # qom-obj-y is code used by both qemu system emulation and qemu-img | |
28 | ||
29 | qom-obj-y = qom/ | |
30 | ||
31 | ####################################################################### | |
32 | # io-obj-y is code used by both qemu system emulation and qemu-img | |
33 | ||
34 | io-obj-y = io/ | |
35 | ||
36 | ###################################################################### | |
37 | # Target independent part of system emulation. The long term path is to | |
38 | # suppress *all* target specific code in case of system emulation, i.e. a | |
39 | # single QEMU executable should support all CPUs and machines. | |
40 | ||
41 | ifeq ($(CONFIG_SOFTMMU),y) | |
42 | common-obj-y = blockdev.o blockdev-nbd.o block/ | |
43 | common-obj-y += bootdevice.o iothread.o | |
44 | common-obj-y += net/ | |
45 | common-obj-y += qdev-monitor.o device-hotplug.o | |
46 | common-obj-$(CONFIG_WIN32) += os-win32.o | |
47 | common-obj-$(CONFIG_POSIX) += os-posix.o | |
48 | ||
49 | common-obj-$(CONFIG_LINUX) += fsdev/ | |
50 | ||
51 | common-obj-y += migration/ | |
52 | ||
53 | common-obj-y += audio/ | |
54 | common-obj-y += hw/ | |
55 | ||
56 | common-obj-y += replay/ | |
57 | ||
58 | common-obj-y += ui/ | |
59 | common-obj-y += bt-host.o bt-vhci.o | |
60 | bt-host.o-cflags := $(BLUEZ_CFLAGS) | |
61 | ||
62 | common-obj-y += dma-helpers.o | |
63 | common-obj-y += vl.o | |
64 | vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS) | |
65 | common-obj-$(CONFIG_TPM) += tpm.o | |
66 | ||
67 | common-obj-$(CONFIG_SLIRP) += slirp/ | |
68 | ||
69 | common-obj-y += backends/ | |
70 | common-obj-y += chardev/ | |
71 | ||
72 | common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o | |
73 | qemu-seccomp.o-cflags := $(SECCOMP_CFLAGS) | |
74 | qemu-seccomp.o-libs := $(SECCOMP_LIBS) | |
75 | ||
76 | common-obj-$(CONFIG_FDT) += device_tree.o | |
77 | ||
78 | ###################################################################### | |
79 | # qapi | |
80 | ||
81 | common-obj-y += qmp-marshal.o | |
82 | common-obj-y += qmp-introspect.o | |
83 | common-obj-y += qmp.o hmp.o | |
84 | endif | |
85 | ||
86 | ####################################################################### | |
87 | # Target-independent parts used in system and user emulation | |
88 | common-obj-y += cpus-common.o | |
89 | common-obj-y += hw/ | |
90 | common-obj-y += qom/ | |
91 | common-obj-y += disas/ | |
92 | ||
93 | ###################################################################### | |
94 | # Resource file for Windows executables | |
95 | version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o | |
96 | ||
97 | ###################################################################### | |
98 | # tracing | |
99 | util-obj-y += trace/ | |
100 | target-obj-y += trace/ | |
101 | ||
102 | ###################################################################### | |
103 | # guest agent | |
104 | ||
105 | # FIXME: a few definitions from qapi-types.o/qapi-visit.o are needed | |
106 | # by libqemuutil.a. These should be moved to a separate .json schema. | |
107 | qga-obj-y = qga/ | |
108 | qga-vss-dll-obj-y = qga/ | |
109 | ||
110 | ###################################################################### | |
111 | # contrib | |
112 | ivshmem-client-obj-$(CONFIG_IVSHMEM) = contrib/ivshmem-client/ | |
113 | ivshmem-server-obj-$(CONFIG_IVSHMEM) = contrib/ivshmem-server/ | |
114 | libvhost-user-obj-y = contrib/libvhost-user/ | |
115 | vhost-user-scsi.o-cflags := $(LIBISCSI_CFLAGS) | |
116 | vhost-user-scsi.o-libs := $(LIBISCSI_LIBS) | |
117 | vhost-user-scsi-obj-y = contrib/vhost-user-scsi/ | |
118 | ||
119 | ###################################################################### | |
120 | trace-events-subdirs = | |
121 | trace-events-subdirs += util | |
122 | trace-events-subdirs += crypto | |
123 | trace-events-subdirs += io | |
124 | trace-events-subdirs += migration | |
125 | trace-events-subdirs += block | |
126 | trace-events-subdirs += chardev | |
127 | trace-events-subdirs += hw/block | |
128 | trace-events-subdirs += hw/block/dataplane | |
129 | trace-events-subdirs += hw/char | |
130 | trace-events-subdirs += hw/intc | |
131 | trace-events-subdirs += hw/net | |
132 | trace-events-subdirs += hw/virtio | |
133 | trace-events-subdirs += hw/audio | |
134 | trace-events-subdirs += hw/misc | |
135 | trace-events-subdirs += hw/usb | |
136 | trace-events-subdirs += hw/scsi | |
137 | trace-events-subdirs += hw/nvram | |
138 | trace-events-subdirs += hw/display | |
139 | trace-events-subdirs += hw/input | |
140 | trace-events-subdirs += hw/timer | |
141 | trace-events-subdirs += hw/dma | |
142 | trace-events-subdirs += hw/sparc | |
143 | trace-events-subdirs += hw/sparc64 | |
144 | trace-events-subdirs += hw/sd | |
145 | trace-events-subdirs += hw/isa | |
146 | trace-events-subdirs += hw/mem | |
147 | trace-events-subdirs += hw/i386 | |
148 | trace-events-subdirs += hw/i386/xen | |
149 | trace-events-subdirs += hw/9pfs | |
150 | trace-events-subdirs += hw/ppc | |
151 | trace-events-subdirs += hw/pci | |
152 | trace-events-subdirs += hw/s390x | |
153 | trace-events-subdirs += hw/vfio | |
154 | trace-events-subdirs += hw/acpi | |
155 | trace-events-subdirs += hw/arm | |
156 | trace-events-subdirs += hw/alpha | |
157 | trace-events-subdirs += hw/xen | |
158 | trace-events-subdirs += hw/ide | |
159 | trace-events-subdirs += ui | |
160 | trace-events-subdirs += audio | |
161 | trace-events-subdirs += net | |
162 | trace-events-subdirs += target/arm | |
163 | trace-events-subdirs += target/i386 | |
164 | trace-events-subdirs += target/mips | |
165 | trace-events-subdirs += target/sparc | |
166 | trace-events-subdirs += target/s390x | |
167 | trace-events-subdirs += target/ppc | |
168 | trace-events-subdirs += qom | |
169 | trace-events-subdirs += linux-user | |
170 | trace-events-subdirs += qapi | |
171 | trace-events-subdirs += accel/tcg | |
172 | trace-events-subdirs += accel/kvm | |
173 | trace-events-subdirs += nbd | |
174 | trace-events-subdirs += scsi | |
175 | ||
176 | trace-events-files = $(SRC_PATH)/trace-events $(trace-events-subdirs:%=$(SRC_PATH)/%/trace-events) | |
177 | ||
178 | trace-obj-y = trace-root.o | |
179 | trace-obj-y += $(trace-events-subdirs:%=%/trace.o) | |
180 | trace-obj-$(CONFIG_TRACE_UST) += trace-ust-all.o | |
181 | trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace-root.o | |
182 | trace-obj-$(CONFIG_TRACE_DTRACE) += $(trace-events-subdirs:%=%/trace-dtrace.o) |