]> git.proxmox.com Git - mirror_qemu.git/blame - Makefile.objs
ps2: fix mouse mappings for right/middle button
[mirror_qemu.git] / Makefile.objs
CommitLineData
3bc2f570 1#######################################################################
a372823a 2# Common libraries for tools and emulators
b917da4c 3stub-obj-y = stubs/ crypto/
39a18158
MA
4util-obj-y = util/ qobject/ qapi/
5util-obj-y += qmp-introspect.o qapi-types.o qapi-visit.o qapi-event.o
3bc2f570 6
32d955a4
MAL
7chardev-obj-y = chardev/
8
0e8c9214
AF
9#######################################################################
10# block-obj-y is code used by both qemu system emulation and qemu-img
11
f157ebba 12block-obj-y = async.o thread-pool.o
798bfe00
FZ
13block-obj-y += nbd/
14block-obj-y += block.o blockjob.o
f157ebba
PB
15block-obj-y += main-loop.o iohandler.o qemu-timer.o
16block-obj-$(CONFIG_POSIX) += aio-posix.o
17block-obj-$(CONFIG_WIN32) += aio-win32.o
7456e4ce 18block-obj-y += block/
587da2c3 19block-obj-y += qemu-io-cmds.o
190b9a8b 20block-obj-$(CONFIG_REPLICATION) += replication.o
0e8c9214 21
cc475698
FZ
22block-obj-m = block/
23
fb37726d
DB
24#######################################################################
25# crypto-obj-y is code used by both qemu system emulation and qemu-img
26
27crypto-obj-y = crypto/
28crypto-aes-obj-y = crypto/
74db920c 29
0c7012e0
DB
30#######################################################################
31# qom-obj-y is code used by both qemu system emulation and qemu-img
32
33qom-obj-y = qom/
34
666a3af9
DB
35#######################################################################
36# io-obj-y is code used by both qemu system emulation and qemu-img
37
38io-obj-y = io/
39
0e8c9214 40######################################################################
050d9940
CWR
41# Target independent part of system emulation. The long term path is to
42# suppress *all* target specific code in case of system emulation, i.e. a
43# single QEMU executable should support all CPUs and machines.
0e8c9214 44
00082344 45ifeq ($(CONFIG_SOFTMMU),y)
ba1183da 46common-obj-y = blockdev.o blockdev-nbd.o block/
be8d8537 47common-obj-y += iothread.o
fd9400b3 48common-obj-y += net/
1559e0d4 49common-obj-y += qdev-monitor.o device-hotplug.o
b0cb640a
BS
50common-obj-$(CONFIG_WIN32) += os-win32.o
51common-obj-$(CONFIG_POSIX) += os-posix.o
254e5950 52
ee20477d 53common-obj-$(CONFIG_LINUX) += fsdev/
ee20477d 54
60fe637b 55common-obj-y += migration/
32d955a4 56common-obj-y += page_cache.o #aio.o
0e8c9214 57
8867aef0 58common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
b0b68fc6
PB
59
60common-obj-y += audio/
3d5a3f9a 61common-obj-y += hw/
a1a9cb0c 62common-obj-y += accel.o
6f991980 63
d73abd6d
PD
64common-obj-y += replay/
65
8867aef0 66common-obj-y += ui/
3d5a3f9a 67common-obj-y += bt-host.o bt-vhci.o
849d8284 68bt-host.o-cflags := $(BLUEZ_CFLAGS)
3e230dd2 69
c9159fe9 70common-obj-y += dma-helpers.o
c9159fe9 71common-obj-y += vl.o
849d8284 72vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS)
bdee56f5 73common-obj-y += tpm.o
0e8c9214 74
4c696054 75common-obj-$(CONFIG_SLIRP) += slirp/
0e8c9214 76
a9b7b2ad
AL
77common-obj-y += backends/
78
737f3518 79common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
f794573e 80
7df057ba
PC
81common-obj-$(CONFIG_FDT) += device_tree.o
82
2345c77c
MR
83######################################################################
84# qapi
85
8e8aba50 86common-obj-y += qmp-marshal.o
39a18158 87common-obj-y += qmp-introspect.o
48a32bed 88common-obj-y += qmp.o hmp.o
00082344 89endif
e3193601 90
9444e9e6
PB
91#######################################################################
92# Target-independent parts used in system and user emulation
c482cb11 93common-obj-y += cpus-common.o
00082344
PB
94common-obj-y += hw/
95common-obj-y += qom/
96common-obj-y += disas/
ce008c1f 97
0b516ef0
SW
98######################################################################
99# Resource file for Windows executables
100version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
0b516ef0 101
341ea691
LV
102######################################################################
103# tracing
104util-obj-y += trace/
105target-obj-y += trace/
106
957f1f99
MR
107######################################################################
108# guest agent
109
59cacde8
PB
110# FIXME: a few definitions from qapi-types.o/qapi-visit.o are needed
111# by libqemuutil.a. These should be moved to a separate .json schema.
169a24ae 112qga-obj-y = qga/
b39297ae 113qga-vss-dll-obj-y = qga/
a75eb03b
DM
114
115######################################################################
116# contrib
117ivshmem-client-obj-y = contrib/ivshmem-client/
118ivshmem-server-obj-y = contrib/ivshmem-server/
7b2e5c65 119libvhost-user-obj-y = contrib/libvhost-user/
1412cf58
DB
120
121######################################################################
0ab8ed18
DB
122trace-events-subdirs =
123trace-events-subdirs += util
124trace-events-subdirs += crypto
125trace-events-subdirs += io
126trace-events-subdirs += migration
127trace-events-subdirs += block
128trace-events-subdirs += hw/block
129trace-events-subdirs += hw/block/dataplane
130trace-events-subdirs += hw/char
131trace-events-subdirs += hw/intc
132trace-events-subdirs += hw/net
133trace-events-subdirs += hw/virtio
134trace-events-subdirs += hw/audio
135trace-events-subdirs += hw/misc
136trace-events-subdirs += hw/usb
137trace-events-subdirs += hw/scsi
138trace-events-subdirs += hw/nvram
139trace-events-subdirs += hw/display
140trace-events-subdirs += hw/input
141trace-events-subdirs += hw/timer
142trace-events-subdirs += hw/dma
143trace-events-subdirs += hw/sparc
144trace-events-subdirs += hw/sd
145trace-events-subdirs += hw/isa
146trace-events-subdirs += hw/mem
147trace-events-subdirs += hw/i386
148trace-events-subdirs += hw/i386/xen
149trace-events-subdirs += hw/9pfs
150trace-events-subdirs += hw/ppc
151trace-events-subdirs += hw/pci
152trace-events-subdirs += hw/s390x
153trace-events-subdirs += hw/vfio
154trace-events-subdirs += hw/acpi
155trace-events-subdirs += hw/arm
156trace-events-subdirs += hw/alpha
157trace-events-subdirs += hw/xen
158trace-events-subdirs += ui
159trace-events-subdirs += audio
160trace-events-subdirs += net
161trace-events-subdirs += target/arm
162trace-events-subdirs += target/i386
163trace-events-subdirs += target/sparc
164trace-events-subdirs += target/s390x
165trace-events-subdirs += target/ppc
166trace-events-subdirs += qom
167trace-events-subdirs += linux-user
168trace-events-subdirs += qapi
169
170trace-events-files = $(SRC_PATH)/trace-events $(trace-events-subdirs:%=$(SRC_PATH)/%/trace-events)
171
172trace-obj-y = trace-root.o
173trace-obj-y += $(trace-events-subdirs:%=%/trace.o)
174trace-obj-$(CONFIG_TRACE_UST) += trace-ust-all.o
175trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace-root.o
176trace-obj-$(CONFIG_TRACE_DTRACE) += $(trace-events-subdirs:%=%/trace-dtrace.o)