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/ qapi-types.o qapi-visit.o qapi-event.o
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 += qemu-io-cmds.o
16

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

21 22
block-obj-m = block/

23 24 25 26 27
#######################################################################
# crypto-obj-y is code used by both qemu system emulation and qemu-img

crypto-obj-y = crypto/
crypto-aes-obj-y = crypto/
28

29 30 31 32 33 34 35 36
######################################################################
# 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
37
libcacard-y += libcacard/vcardt.o
38 39
libcacard/vcard_emul_nss.o-cflags := $(NSS_CFLAGS)
libcacard/vcard_emul_nss.o-libs := $(NSS_LIBS)
40

41
######################################################################
42 43 44
# 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.
45

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

54 55
common-obj-$(CONFIG_LINUX) += fsdev/

56
common-obj-y += migration/
57
common-obj-y += qemu-char.o #aio.o
58
common-obj-y += page_cache.o
A
Alexander Graf 已提交
59
common-obj-y += qjson.o
60

61
common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
62 63

common-obj-y += audio/
64
common-obj-y += hw/
65
common-obj-y += accel.o
66

67
common-obj-y += ui/
68
common-obj-y += bt-host.o bt-vhci.o
69
bt-host.o-cflags := $(BLUEZ_CFLAGS)
70

S
Stefan Weil 已提交
71 72
common-obj-y += dma-helpers.o
common-obj-y += vl.o
73
vl.o-cflags := $(GPROF_CFLAGS) $(SDL_CFLAGS)
74
common-obj-y += tpm.o
75

76
common-obj-$(CONFIG_SLIRP) += slirp/
77

78 79
common-obj-y += backends/

80
common-obj-$(CONFIG_SECCOMP) += qemu-seccomp.o
81

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

84 85
common-obj-$(CONFIG_FDT) += device_tree.o

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

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

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

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

106 107 108 109 110
######################################################################
# tracing
util-obj-y +=  trace/
target-obj-y += trace/

111 112 113
######################################################################
# guest agent

114 115
# 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.
116
qga-obj-y = qga/
117
qga-vss-dll-obj-y = qga/