Makefile.objs 3.4 KB
Newer Older
1
#######################################################################
2
# Common libraries for tools and emulators
3
stub-obj-y = stubs/
4
util-obj-y = util/ qobject/ qapi/ trace/
5

6 7 8
#######################################################################
# block-obj-y is code used by both qemu system emulation and qemu-img

9 10 11 12 13
block-obj-y = async.o thread-pool.o
block-obj-y += nbd.o block.o blockjob.o
block-obj-y += main-loop.o iohandler.o qemu-timer.o
block-obj-$(CONFIG_POSIX) += aio-posix.o
block-obj-$(CONFIG_WIN32) += aio-win32.o
14
block-obj-y += block/
15
block-obj-y += qapi-types.o qapi-visit.o
16
block-obj-y += qemu-io-cmds.o
17

P
Paolo Bonzini 已提交
18 19
block-obj-y += qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
block-obj-y += qemu-coroutine-sleep.o
20
block-obj-y += coroutine-$(CONFIG_COROUTINE_BACKEND).o
P
Paolo Bonzini 已提交
21

22 23
block-obj-m = block/

24

25 26 27 28 29 30 31 32
######################################################################
# smartcard

libcacard-y += libcacard/cac.o libcacard/event.o
libcacard-y += libcacard/vcard.o libcacard/vreader.o
libcacard-y += libcacard/vcard_emul_nss.o
libcacard-y += libcacard/vcard_emul_type.o
libcacard-y += libcacard/card_7816.o
33
libcacard-y += libcacard/vcardt.o
34

35
######################################################################
36 37 38
# Target independent part of system emulation. The long term path is to
# suppress *all* target specific code in case of system emulation, i.e. a
# single QEMU executable should support all CPUs and machines.
39

P
Paolo Bonzini 已提交
40
ifeq ($(CONFIG_SOFTMMU),y)
41
common-obj-y = blockdev.o blockdev-nbd.o block/
P
Paolo Bonzini 已提交
42
common-obj-y += net/
43
common-obj-y += qdev-monitor.o device-hotplug.o
44 45
common-obj-$(CONFIG_WIN32) += os-win32.o
common-obj-$(CONFIG_POSIX) += os-posix.o
G
Gerd Hoffmann 已提交
46

47 48
common-obj-$(CONFIG_LINUX) += fsdev/

49
common-obj-y += migration.o migration-tcp.o
50
common-obj-y += vmstate.o
51
common-obj-y += qemu-file.o
M
Michael R. Hines 已提交
52
common-obj-$(CONFIG_RDMA) += migration-rdma.o
53
common-obj-y += qemu-char.o #aio.o
54
common-obj-y += block-migration.o
55
common-obj-y += page_cache.o xbzrle.o
56 57 58

common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o

59
common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
60 61

common-obj-y += audio/
62
common-obj-y += hw/
63

64
common-obj-y += ui/
65
common-obj-y += bt-host.o bt-vhci.o
66

S
Stefan Weil 已提交
67 68
common-obj-y += dma-helpers.o
common-obj-y += vl.o
69
common-obj-y += tpm.o
70

71
common-obj-$(CONFIG_SLIRP) += slirp/
72

73 74
common-obj-y += backends/

75
common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
76

77
common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
R
Robert Relyea 已提交
78

M
Michael Roth 已提交
79 80 81
######################################################################
# qapi

82
common-obj-y += qmp-marshal.o
A
Anthony Liguori 已提交
83
common-obj-y += qmp.o hmp.o
P
Paolo Bonzini 已提交
84
endif
85

86 87 88 89 90
######################################################################
# some qapi visitors are used by both system and user emulation:

common-obj-y += qapi-visit.o qapi-types.o

91 92
#######################################################################
# Target-independent parts used in system and user emulation
P
Paolo Bonzini 已提交
93 94 95 96 97
common-obj-y += qemu-log.o
common-obj-y += tcg-runtime.o
common-obj-y += hw/
common-obj-y += qom/
common-obj-y += disas/
98

99 100 101 102 103
######################################################################
# Resource file for Windows executables
version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o
version-lobj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.lo

104 105 106
######################################################################
# guest agent

107 108 109
# FIXME: a few definitions from qapi-types.o/qapi-visit.o are needed
# by libqemuutil.a.  These should be moved to a separate .json schema.
qga-obj-y = qga/ qapi-types.o qapi-visit.o
110
qga-vss-dll-obj-y = qga/