Makefile.objs 7.5 KB
Newer Older
1 2 3 4
#######################################################################
# Stub library, linked in tools
stub-obj-y = stubs/

5 6 7
#######################################################################
# Target-independent parts used in system and user emulation
universal-obj-y =
8
universal-obj-y += qemu-log.o
9

10 11 12 13
#######################################################################
# QObject
qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
qobject-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o
14
qobject-obj-y += qerror.o error.o qemu-error.o
15

16 17 18 19
universal-obj-y += $(qobject-obj-y)

#######################################################################
# QOM
20
qom-obj-y = qom/
21 22 23

universal-obj-y += $(qom-obj-y)

24 25
#######################################################################
# oslib-obj-y is code depending on the OS (win32 vs posix)
26
oslib-obj-y = osdep.o cutils.o qemu-timer-common.o
27 28
oslib-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
oslib-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
29

K
Kevin Wolf 已提交
30 31
#######################################################################
# coroutines
32
coroutine-obj-y = qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
33
coroutine-obj-y += qemu-coroutine-sleep.o
34
ifeq ($(CONFIG_UCONTEXT_COROUTINE),y)
K
Kevin Wolf 已提交
35
coroutine-obj-$(CONFIG_POSIX) += coroutine-ucontext.o
36
else
37 38 39
ifeq ($(CONFIG_SIGALTSTACK_COROUTINE),y)
coroutine-obj-$(CONFIG_POSIX) += coroutine-sigaltstack.o
else
40 41
coroutine-obj-$(CONFIG_POSIX) += coroutine-gthread.o
endif
42
endif
K
Kevin Wolf 已提交
43 44
coroutine-obj-$(CONFIG_WIN32) += coroutine-win32.o

45 46 47
#######################################################################
# block-obj-y is code used by both qemu system emulation and qemu-img

48
block-obj-y = iov.o cache-utils.o qemu-option.o module.o async.o
P
Paolo Bonzini 已提交
49
block-obj-y += nbd.o block.o blockjob.o aes.o qemu-config.o
50
block-obj-y += thread-pool.o qemu-progress.o qemu-sockets.o uri.o notify.o
51
block-obj-y += $(coroutine-obj-y) $(qobject-obj-y) $(version-obj-y)
P
Paolo Bonzini 已提交
52 53
block-obj-$(CONFIG_POSIX) += event_notifier-posix.o aio-posix.o
block-obj-$(CONFIG_WIN32) += event_notifier-win32.o aio-win32.o
54
block-obj-y += block/
P
Paolo Bonzini 已提交
55
block-obj-y += $(qapi-obj-y) qapi-types.o qapi-visit.o
56

57
ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
P
Paul Brook 已提交
58 59 60 61
# 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
62

63
######################################################################
64 65 66
# 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.
67

P
Paolo Bonzini 已提交
68
common-obj-y = $(block-obj-y) blockdev.o blockdev-nbd.o block/
P
Paolo Bonzini 已提交
69
common-obj-y += net/
70
common-obj-y += qom/
71
common-obj-y += readline.o
72
common-obj-y += $(oslib-obj-y)
73 74
common-obj-$(CONFIG_WIN32) += os-win32.o
common-obj-$(CONFIG_POSIX) += os-posix.o
G
Gerd Hoffmann 已提交
75

76 77 78
common-obj-$(CONFIG_LINUX) += fsdev/
extra-obj-$(CONFIG_LINUX) += fsdev/

P
Paolo Bonzini 已提交
79
common-obj-y += tcg-runtime.o host-utils.o main-loop.o
80 81
common-obj-y += migration.o migration-tcp.o
common-obj-y += migration.o migration-tcp.o
82
common-obj-y += qemu-char.o #aio.o
83
common-obj-y += block-migration.o iohandler.o
84
common-obj-y += bitmap.o bitops.o
O
Orit Wasserman 已提交
85
common-obj-y += page_cache.o
86 87

common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
88
common-obj-$(CONFIG_WIN32) += version.o
89

90
common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
91 92

common-obj-y += audio/
93
common-obj-y += hw/
94 95
extra-obj-y += hw/

96
common-obj-y += ui/
97
common-obj-y += bt-host.o bt-vhci.o
98

S
Stefan Weil 已提交
99
common-obj-y += dma-helpers.o
100
common-obj-y += acl.o
101
common-obj-$(CONFIG_POSIX) += compatfd.o
102
common-obj-y += qemu-timer.o qemu-timer-common.o
S
Stefan Weil 已提交
103 104
common-obj-y += qtest.o
common-obj-y += vl.o
105

106
common-obj-$(CONFIG_SLIRP) += slirp/
107

108 109
common-obj-y += backends/

110 111 112 113 114 115
######################################################################
# libseccomp
ifeq ($(CONFIG_SECCOMP),y)
common-obj-y += qemu-seccomp.o
endif

116 117 118 119 120 121
######################################################################
# libuser

user-obj-y =
user-obj-y += envlist.o path.o
user-obj-y += tcg-runtime.o host-utils.o
122
user-obj-y += cache-utils.o
123 124
user-obj-y += module.o
user-obj-y += qemu-user.o
125
user-obj-y += qom/
126

B
Blue Swirl 已提交
127
######################################################################
128
# disassemblers
B
Blue Swirl 已提交
129 130
# NOTE: the disassembler code is only needed for debugging

131
universal-obj-y += disas/
132

133 134 135
######################################################################
# trace

136
ifeq ($(TRACE_BACKEND),dtrace)
137
TRACE_H_EXTRA_DEPS=trace-dtrace.h
138
endif
139
trace.h: trace.h-timestamp $(TRACE_H_EXTRA_DEPS)
140
trace.h-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
141 142 143 144
	$(call quiet-command,$(TRACETOOL) \
		--format=h \
		--backend=$(TRACE_BACKEND) \
		< $< > $@,"  GEN   trace.h")
145 146 147
	@cmp -s $@ trace.h || cp $@ trace.h

trace.c: trace.c-timestamp
148
trace.c-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
149 150 151 152
	$(call quiet-command,$(TRACETOOL) \
		--format=c \
		--backend=$(TRACE_BACKEND) \
		< $< > $@,"  GEN   trace.c")
153 154 155 156 157 158 159 160
	@cmp -s $@ trace.c || cp $@ trace.c

trace.o: trace.c $(GENERATED_HEADERS)

trace-dtrace.h: trace-dtrace.dtrace
	$(call quiet-command,dtrace -o $@ -h -s $<, "  GEN   trace-dtrace.h")

# Normal practice is to name DTrace probe file with a '.d' extension
161
# but that gets picked up by QEMU's Makefile as an external dependency
162 163
# rule file. So we use '.dtrace' instead
trace-dtrace.dtrace: trace-dtrace.dtrace-timestamp
164
trace-dtrace.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
165 166 167 168
	$(call quiet-command,$(TRACETOOL) \
		--format=d \
		--backend=$(TRACE_BACKEND) \
		< $< > $@,"  GEN   trace-dtrace.dtrace")
169 170 171
	@cmp -s $@ trace-dtrace.dtrace || cp $@ trace-dtrace.dtrace

trace-dtrace.o: trace-dtrace.dtrace $(GENERATED_HEADERS)
172
	$(call quiet-command,dtrace -o $@ -G -s $<, "  GEN   trace-dtrace.o")
173

A
Alon Levy 已提交
174 175 176 177 178
ifeq ($(LIBTOOL),)
trace-dtrace.lo: trace-dtrace.dtrace
	@echo "missing libtool. please install and rerun configure."; exit 1
else
trace-dtrace.lo: trace-dtrace.dtrace
B
Brad 已提交
179
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, "  lt GEN trace-dtrace.o")
A
Alon Levy 已提交
180 181
endif

182
trace/simple.o: trace/simple.c $(GENERATED_HEADERS)
183

184 185
trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace.o
ifneq ($(TRACE_BACKEND),dtrace)
186
trace-obj-y = trace.o
187
endif
188

P
Paolo Bonzini 已提交
189 190
trace-obj-$(CONFIG_TRACE_DEFAULT) += trace/default.o
trace-obj-$(CONFIG_TRACE_SIMPLE) += trace/simple.o
191
trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o
P
Paolo Bonzini 已提交
192 193
trace-obj-$(CONFIG_TRACE_STDERR) += trace/stderr.o
trace-obj-y += trace/control.o
194

195 196
$(trace-obj-y): $(GENERATED_HEADERS)

P
Paolo Bonzini 已提交
197 198
universal-obj-y += $(trace-obj-y)

R
Robert Relyea 已提交
199 200 201
######################################################################
# smartcard

202 203 204 205 206 207 208
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

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

M
Michael Roth 已提交
210 211 212
######################################################################
# qapi

213
qapi-obj-y = qapi/
214
qapi-obj-y += qapi-types.o qapi-visit.o
M
Michael Roth 已提交
215

216
common-obj-y += qmp-marshal.o qapi-visit.o qapi-types.o
A
Anthony Liguori 已提交
217
common-obj-y += qmp.o hmp.o
218

219 220
universal-obj-y += $(qapi-obj-y)

221 222 223
######################################################################
# guest agent

224
qga-obj-y = qga/ module.o qemu-tool.o
225
qga-obj-$(CONFIG_POSIX) += qemu-sockets.o qemu-option.o
226

227 228 229 230
vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)

vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)

231 232
QEMU_CFLAGS+=$(GLIB_CFLAGS)

233
nested-vars += \
234
	stub-obj-y \
235
	qga-obj-y \
236
	qom-obj-y \
237
	qapi-obj-y \
P
Paolo Bonzini 已提交
238
	block-obj-y \
239
	user-obj-y \
240
	common-obj-y \
241
	universal-obj-y \
242
	extra-obj-y
243
dummy := $(call unnest-vars)