Makefile.objs 3.6 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

P
Paolo Bonzini 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
block-obj-y += qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
block-obj-y += qemu-coroutine-sleep.o
ifeq ($(CONFIG_UCONTEXT_COROUTINE),y)
block-obj-$(CONFIG_POSIX) += coroutine-ucontext.o
else
ifeq ($(CONFIG_SIGALTSTACK_COROUTINE),y)
block-obj-$(CONFIG_POSIX) += coroutine-sigaltstack.o
else
block-obj-$(CONFIG_POSIX) += coroutine-gthread.o
endif
endif
block-obj-$(CONFIG_WIN32) += coroutine-win32.o

30
ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
P
Paul Brook 已提交
31 32 33 34
# Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add.
# only pull in the actual virtio-9p device if we also enabled virtio.
CONFIG_REALLY_VIRTFS=y
endif
35

36 37 38 39 40 41 42 43 44
######################################################################
# 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

45
######################################################################
46 47 48
# 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.
49

P
Paolo Bonzini 已提交
50
ifeq ($(CONFIG_SOFTMMU),y)
P
Paolo Bonzini 已提交
51
common-obj-y = $(block-obj-y) blockdev.o blockdev-nbd.o block/
P
Paolo Bonzini 已提交
52
common-obj-y += net/
53
common-obj-y += readline.o
54
common-obj-y += qdev-monitor.o device-hotplug.o
55 56
common-obj-$(CONFIG_WIN32) += os-win32.o
common-obj-$(CONFIG_POSIX) += os-posix.o
G
Gerd Hoffmann 已提交
57

58 59
common-obj-$(CONFIG_LINUX) += fsdev/

60
common-obj-y += migration.o migration-tcp.o
61
common-obj-y += qemu-char.o #aio.o
62
common-obj-y += block-migration.o
63
common-obj-y += page_cache.o xbzrle.o
64 65 66

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

67
common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
68 69

common-obj-y += audio/
70
common-obj-y += hw/
71

72
common-obj-y += ui/
73
common-obj-y += bt-host.o bt-vhci.o
74

S
Stefan Weil 已提交
75 76
common-obj-y += dma-helpers.o
common-obj-y += vl.o
77
common-obj-y += tpm/
78

79
common-obj-$(CONFIG_SLIRP) += slirp/
80

81 82
common-obj-y += backends/

83
common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
84

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

M
Michael Roth 已提交
87 88 89
######################################################################
# qapi

90
common-obj-y += qmp-marshal.o qapi-visit.o qapi-types.o
A
Anthony Liguori 已提交
91
common-obj-y += qmp.o hmp.o
P
Paolo Bonzini 已提交
92
endif
93

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

102 103 104
######################################################################
# guest agent

105 106 107
# 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
108

109 110 111 112
vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)

vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)

113 114
QEMU_CFLAGS+=$(GLIB_CFLAGS)

115
nested-vars += \
116
	stub-obj-y \
117
	util-obj-y \
118
	qga-obj-y \
P
Paolo Bonzini 已提交
119
	block-obj-y \
P
Paolo Bonzini 已提交
120
	common-obj-y
121
dummy := $(call unnest-vars)