]> git.proxmox.com Git - mirror_qemu.git/blame_incremental - Makefile.objs
ps2: fix mouse mappings for right/middle button
[mirror_qemu.git] / Makefile.objs
... / ...
CommitLineData
1#######################################################################
2# Common libraries for tools and emulators
3stub-obj-y = stubs/ crypto/
4util-obj-y = util/ qobject/ qapi/
5util-obj-y += qmp-introspect.o qapi-types.o qapi-visit.o qapi-event.o
6
7chardev-obj-y = chardev/
8
9#######################################################################
10# block-obj-y is code used by both qemu system emulation and qemu-img
11
12block-obj-y = async.o thread-pool.o
13block-obj-y += nbd/
14block-obj-y += block.o blockjob.o
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
18block-obj-y += block/
19block-obj-y += qemu-io-cmds.o
20block-obj-$(CONFIG_REPLICATION) += replication.o
21
22block-obj-m = block/
23
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/
29
30#######################################################################
31# qom-obj-y is code used by both qemu system emulation and qemu-img
32
33qom-obj-y = qom/
34
35#######################################################################
36# io-obj-y is code used by both qemu system emulation and qemu-img
37
38io-obj-y = io/
39
40######################################################################
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.
44
45ifeq ($(CONFIG_SOFTMMU),y)
46common-obj-y = blockdev.o blockdev-nbd.o block/
47common-obj-y += iothread.o
48common-obj-y += net/
49common-obj-y += qdev-monitor.o device-hotplug.o
50common-obj-$(CONFIG_WIN32) += os-win32.o
51common-obj-$(CONFIG_POSIX) += os-posix.o
52
53common-obj-$(CONFIG_LINUX) += fsdev/
54
55common-obj-y += migration/
56common-obj-y += page_cache.o #aio.o
57
58common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
59
60common-obj-y += audio/
61common-obj-y += hw/
62common-obj-y += accel.o
63
64common-obj-y += replay/
65
66common-obj-y += ui/
67common-obj-y += bt-host.o bt-vhci.o
68bt-host.o-cflags := $(BLUEZ_CFLAGS)
69
70common-obj-y += dma-helpers.o
71common-obj-y += vl.o
72vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS)
73common-obj-y += tpm.o
74
75common-obj-$(CONFIG_SLIRP) += slirp/
76
77common-obj-y += backends/
78
79common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
80
81common-obj-$(CONFIG_FDT) += device_tree.o
82
83######################################################################
84# qapi
85
86common-obj-y += qmp-marshal.o
87common-obj-y += qmp-introspect.o
88common-obj-y += qmp.o hmp.o
89endif
90
91#######################################################################
92# Target-independent parts used in system and user emulation
93common-obj-y += cpus-common.o
94common-obj-y += hw/
95common-obj-y += qom/
96common-obj-y += disas/
97
98######################################################################
99# Resource file for Windows executables
100version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
101
102######################################################################
103# tracing
104util-obj-y += trace/
105target-obj-y += trace/
106
107######################################################################
108# guest agent
109
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.
112qga-obj-y = qga/
113qga-vss-dll-obj-y = qga/
114
115######################################################################
116# contrib
117ivshmem-client-obj-y = contrib/ivshmem-client/
118ivshmem-server-obj-y = contrib/ivshmem-server/
119libvhost-user-obj-y = contrib/libvhost-user/
120
121######################################################################
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)