Statistics
| Branch: | Revision:

root / Makefile.objs @ 25f27a4f

History | View | Annotate | Download (7.7 kB)

1
#######################################################################
2
# Target-independent parts used in system and user emulation
3
universal-obj-y =
4

    
5
#######################################################################
6
# QObject
7
qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
8
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
universal-obj-y += $(qobject-obj-y)
12

    
13
#######################################################################
14
# QOM
15
qom-obj-y = qom/
16

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

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

    
25
universal-obj-y += $(oslib-obj-y)
26

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

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

    
45
block-obj-y = cutils.o cache-utils.o qemu-option.o module.o async.o
46
block-obj-y += nbd.o block.o aio.o aes.o qemu-config.o qemu-progress.o qemu-sockets.o
47
block-obj-y += $(coroutine-obj-y) $(qobject-obj-y) $(version-obj-y)
48
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
49
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
50
block-obj-y += block/
51

    
52
ifeq ($(CONFIG_VIRTIO)$(CONFIG_VIRTFS)$(CONFIG_PCI),yyy)
53
# Lots of the fsdev/9pcode is pulled in by vl.c via qemu_fsdev_add.
54
# only pull in the actual virtio-9p device if we also enabled virtio.
55
CONFIG_REALLY_VIRTFS=y
56
endif
57

    
58
######################################################################
59
# Target independent part of system emulation. The long term path is to
60
# suppress *all* target specific code in case of system emulation, i.e. a
61
# single QEMU executable should support all CPUs and machines.
62

    
63
common-obj-y = $(block-obj-y) blockdev.o
64
common-obj-y += net.o net/
65
common-obj-y += qom/
66
common-obj-y += readline.o console.o cursor.o
67
common-obj-$(CONFIG_WIN32) += os-win32.o
68
common-obj-$(CONFIG_POSIX) += os-posix.o
69

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

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

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

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

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

    
91
common-obj-y += iov.o acl.o
92
common-obj-$(CONFIG_POSIX) += compatfd.o
93
common-obj-y += notify.o event_notifier.o
94
common-obj-y += qemu-timer.o qemu-timer-common.o
95

    
96
common-obj-$(CONFIG_SLIRP) += slirp/
97

    
98
######################################################################
99
# libuser
100

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

    
110
######################################################################
111
# libhw
112

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

    
115
######################################################################
116
# libdis
117
# NOTE: the disassembler code is only needed for debugging
118

    
119
libdis-y =
120
libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
121
libdis-$(CONFIG_ARM_DIS) += arm-dis.o
122
libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
123
libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
124
libdis-$(CONFIG_I386_DIS) += i386-dis.o
125
libdis-$(CONFIG_IA64_DIS) += ia64-dis.o
126
libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
127
libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
128
libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
129
libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
130
libdis-$(CONFIG_S390_DIS) += s390-dis.o
131
libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
132
libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o
133
libdis-$(CONFIG_LM32_DIS) += lm32-dis.o
134

    
135
######################################################################
136
# trace
137

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

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

    
157
trace.o: trace.c $(GENERATED_HEADERS)
158

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

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

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

    
176
ifeq ($(LIBTOOL),)
177
trace-dtrace.lo: trace-dtrace.dtrace
178
	@echo "missing libtool. please install and rerun configure."; exit 1
179
else
180
trace-dtrace.lo: trace-dtrace.dtrace
181
	$(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, "  lt GEN trace-dtrace.o")
182
endif
183

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

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

    
191
trace-obj-$(CONFIG_TRACE_DEFAULT) += trace/default.o
192
trace-obj-$(CONFIG_TRACE_SIMPLE) += trace/simple.o
193
trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o
194
trace-obj-$(CONFIG_TRACE_STDERR) += trace/stderr.o
195
trace-obj-y += trace/control.o
196

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

    
199
######################################################################
200
# smartcard
201

    
202
libcacard-y += libcacard/cac.o libcacard/event.o
203
libcacard-y += libcacard/vcard.o libcacard/vreader.o
204
libcacard-y += libcacard/vcard_emul_nss.o
205
libcacard-y += libcacard/vcard_emul_type.o
206
libcacard-y += libcacard/card_7816.o
207

    
208
common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
209

    
210
######################################################################
211
# qapi
212

    
213
qapi-obj-y = qapi/
214

    
215
common-obj-y += qmp-marshal.o qapi-visit.o qapi-types.o
216
common-obj-y += qmp.o hmp.o
217

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

    
220
######################################################################
221
# guest agent
222

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

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

    
229
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
230

    
231
QEMU_CFLAGS+=$(GLIB_CFLAGS)
232

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