Makefile.objs 7.7 KB
Newer Older
1 2 3 4
#######################################################################
# Target-independent parts used in system and user emulation
universal-obj-y =

5 6 7 8
#######################################################################
# 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
9
qobject-obj-y += qerror.o error.o qemu-error.o
10

11 12 13 14
universal-obj-y += $(qobject-obj-y)

#######################################################################
# QOM
15
qom-obj-y = qom/
16 17 18

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

19 20 21
#######################################################################
# oslib-obj-y is code depending on the OS (win32 vs posix)
oslib-obj-y = osdep.o
22 23
oslib-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
oslib-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
24

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

40 41 42
#######################################################################
# block-obj-y is code used by both qemu system emulation and qemu-img

A
Anthony Liguori 已提交
43
block-obj-y = cutils.o cache-utils.o qemu-option.o module.o async.o
44
block-obj-y += nbd.o block.o aio.o aes.o qemu-config.o qemu-progress.o qemu-sockets.o
45
block-obj-y += $(coroutine-obj-y) $(qobject-obj-y) $(version-obj-y)
46 47
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
48
block-obj-y += block/
49

50
ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
P
Paul Brook 已提交
51 52 53 54
# 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
55

56
######################################################################
57 58 59
# 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.
60

61
common-obj-y = $(block-obj-y) blockdev.o
62
common-obj-y += net.o net/
63
common-obj-y += qom/
64
common-obj-y += readline.o console.o cursor.o
65
common-obj-y += $(oslib-obj-y)
66 67
common-obj-$(CONFIG_WIN32) += os-win32.o
common-obj-$(CONFIG_POSIX) += os-posix.o
G
Gerd Hoffmann 已提交
68

69 70 71
common-obj-$(CONFIG_LINUX) += fsdev/
extra-obj-$(CONFIG_LINUX) += fsdev/

P
Paolo Bonzini 已提交
72
common-obj-y += tcg-runtime.o host-utils.o main-loop.o
73
common-obj-y += input.o
74
common-obj-y += buffered_file.o migration.o migration-tcp.o
75
common-obj-y += qemu-char.o #aio.o
76
common-obj-y += block-migration.o iohandler.o
77
common-obj-y += pflib.o
78
common-obj-y += bitmap.o bitops.o
79 80

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

83
common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
84 85

common-obj-y += audio/
86
common-obj-y += hw/
87
common-obj-y += ui/
88
common-obj-y += bt-host.o bt-vhci.o
89 90

common-obj-y += iov.o acl.o
91
common-obj-$(CONFIG_POSIX) += compatfd.o
B
Blue Swirl 已提交
92
common-obj-y += notify.o event_notifier.o
93
common-obj-y += qemu-timer.o qemu-timer-common.o
94

95
common-obj-$(CONFIG_SLIRP) += slirp/
96 97 98 99 100 101 102 103

######################################################################
# libuser

user-obj-y =
user-obj-y += envlist.o path.o
user-obj-y += tcg-runtime.o host-utils.o
user-obj-y += cutils.o cache-utils.o
104 105
user-obj-y += module.o
user-obj-y += qemu-user.o
106
user-obj-y += $(trace-obj-y)
107
user-obj-y += qom/
108 109 110 111

######################################################################
# libhw

112
hw-obj-y = vl.o dma-helpers.o qtest.o hw/
113

B
Blue Swirl 已提交
114 115 116 117 118 119 120 121 122 123
######################################################################
# libdis
# NOTE: the disassembler code is only needed for debugging

libdis-y =
libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
libdis-$(CONFIG_ARM_DIS) += arm-dis.o
libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
libdis-$(CONFIG_I386_DIS) += i386-dis.o
A
Aurelien Jarno 已提交
124
libdis-$(CONFIG_IA64_DIS) += ia64-dis.o
B
Blue Swirl 已提交
125 126 127 128 129 130 131
libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
libdis-$(CONFIG_S390_DIS) += s390-dis.o
libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o
132
libdis-$(CONFIG_LM32_DIS) += lm32-dis.o
133

134 135 136
######################################################################
# trace

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

trace.c: trace.c-timestamp
149
trace.c-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
150 151 152 153
	$(call quiet-command,$(TRACETOOL) \
		--format=c \
		--backend=$(TRACE_BACKEND) \
		< $< > $@,"  GEN   trace.c")
154 155 156 157 158 159 160 161
	@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
162
# but that gets picked up by QEMU's Makefile as an external dependency
163 164
# rule file. So we use '.dtrace' instead
trace-dtrace.dtrace: trace-dtrace.dtrace-timestamp
165
trace-dtrace.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
166 167 168 169
	$(call quiet-command,$(TRACETOOL) \
		--format=d \
		--backend=$(TRACE_BACKEND) \
		< $< > $@,"  GEN   trace-dtrace.dtrace")
170 171 172
	@cmp -s $@ trace-dtrace.dtrace || cp $@ trace-dtrace.dtrace

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

A
Alon Levy 已提交
175 176 177 178 179
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 已提交
180
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, "  lt GEN trace-dtrace.o")
A
Alon Levy 已提交
181 182
endif

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

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

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

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

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

201 202 203 204 205 206 207
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 已提交
208

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

212
qapi-obj-y = qapi/
M
Michael Roth 已提交
213

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

217 218
universal-obj-y += $(qapi-obj-y)

219 220 221
######################################################################
# guest agent

222
qga-obj-y = qga/ qemu-ga.o module.o
223
qga-obj-$(CONFIG_WIN32) += oslib-win32.o
224
qga-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-sockets.o qemu-option.o
225

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

vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)

230 231
QEMU_CFLAGS+=$(GLIB_CFLAGS)

232
nested-vars += \
233
	hw-obj-y \
234
	qga-obj-y \
235
	block-obj-y \
236
	qom-obj-y \
237
	qapi-obj-y \
238
	user-obj-y \
239 240
	common-obj-y \
	extra-obj-y
241
dummy := $(call unnest-vars)