stellaris: Removed SSI mux
[qemu-kvm.git] / Makefile.objs
blob74b35422ce255778f9751f229b593eda45ae9f63
1 #######################################################################
2 # Target-independent parts used in system and user emulation
3 universal-obj-y =
4 universal-obj-y += qemu-log.o
6 #######################################################################
7 # QObject
8 qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
9 qobject-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o
10 qobject-obj-y += qerror.o error.o qemu-error.o
12 universal-obj-y += $(qobject-obj-y)
14 #######################################################################
15 # QOM
16 qom-obj-y = qom/
18 universal-obj-y += $(qom-obj-y)
20 #######################################################################
21 # oslib-obj-y is code depending on the OS (win32 vs posix)
22 oslib-obj-y = osdep.o
23 oslib-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
24 oslib-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
26 #######################################################################
27 # coroutines
28 coroutine-obj-y = qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
29 coroutine-obj-y += qemu-coroutine-sleep.o
30 ifeq ($(CONFIG_UCONTEXT_COROUTINE),y)
31 coroutine-obj-$(CONFIG_POSIX) += coroutine-ucontext.o
32 else
33 ifeq ($(CONFIG_SIGALTSTACK_COROUTINE),y)
34 coroutine-obj-$(CONFIG_POSIX) += coroutine-sigaltstack.o
35 else
36 coroutine-obj-$(CONFIG_POSIX) += coroutine-gthread.o
37 endif
38 endif
39 coroutine-obj-$(CONFIG_WIN32) += coroutine-win32.o
41 #######################################################################
42 # block-obj-y is code used by both qemu system emulation and qemu-img
44 block-obj-y = cutils.o iov.o cache-utils.o qemu-option.o module.o async.o
45 block-obj-y += nbd.o block.o blockjob.o aio.o aes.o qemu-config.o
46 block-obj-y += qemu-progress.o qemu-sockets.o uri.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/
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
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.
63 common-obj-y = $(block-obj-y) blockdev.o block/
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-y += $(oslib-obj-y)
68 common-obj-$(CONFIG_WIN32) += os-win32.o
69 common-obj-$(CONFIG_POSIX) += os-posix.o
71 common-obj-$(CONFIG_LINUX) += fsdev/
72 extra-obj-$(CONFIG_LINUX) += fsdev/
74 common-obj-y += tcg-runtime.o host-utils.o main-loop.o
75 common-obj-y += input.o
76 common-obj-y += buffered_file.o migration.o migration-tcp.o
77 common-obj-y += qemu-char.o #aio.o
78 common-obj-y += block-migration.o iohandler.o
79 common-obj-y += pflib.o
80 common-obj-y += bitmap.o bitops.o
81 common-obj-y += page_cache.o
83 common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
84 common-obj-$(CONFIG_WIN32) += version.o
86 common-obj-$(CONFIG_SPICE) += spice-qemu-char.o
88 common-obj-y += audio/
89 common-obj-y += hw/
90 common-obj-y += ui/
91 common-obj-y += bt-host.o bt-vhci.o
93 common-obj-y += dma-helpers.o
94 common-obj-y += iov.o acl.o
95 common-obj-$(CONFIG_POSIX) += compatfd.o
96 common-obj-y += notify.o event_notifier.o
97 common-obj-y += qemu-timer.o qemu-timer-common.o
98 common-obj-y += qtest.o
99 common-obj-y += vl.o
101 common-obj-$(CONFIG_SLIRP) += slirp/
103 ######################################################################
104 # libseccomp
105 ifeq ($(CONFIG_SECCOMP),y)
106 common-obj-y += qemu-seccomp.o
107 endif
109 ######################################################################
110 # libuser
112 user-obj-y =
113 user-obj-y += envlist.o path.o
114 user-obj-y += tcg-runtime.o host-utils.o
115 user-obj-y += cutils.o iov.o cache-utils.o
116 user-obj-y += module.o
117 user-obj-y += qemu-user.o
118 user-obj-y += $(trace-obj-y)
119 user-obj-y += qom/
121 ######################################################################
122 # libdis
123 # NOTE: the disassembler code is only needed for debugging
125 libdis-y =
126 libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
127 libdis-$(CONFIG_ARM_DIS) += arm-dis.o
128 libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
129 libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
130 libdis-$(CONFIG_I386_DIS) += i386-dis.o
131 libdis-$(CONFIG_IA64_DIS) += ia64-dis.o
132 libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
133 libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
134 libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
135 libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
136 libdis-$(CONFIG_S390_DIS) += s390-dis.o
137 libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
138 libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o
139 libdis-$(CONFIG_LM32_DIS) += lm32-dis.o
141 ######################################################################
142 # trace
144 ifeq ($(TRACE_BACKEND),dtrace)
145 TRACE_H_EXTRA_DEPS=trace-dtrace.h
146 endif
147 trace.h: trace.h-timestamp $(TRACE_H_EXTRA_DEPS)
148 trace.h-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
149         $(call quiet-command,$(TRACETOOL) \
150                 --format=h \
151                 --backend=$(TRACE_BACKEND) \
152                 < $< > $@,"  GEN   trace.h")
153         @cmp -s $@ trace.h || cp $@ trace.h
155 trace.c: trace.c-timestamp
156 trace.c-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
157         $(call quiet-command,$(TRACETOOL) \
158                 --format=c \
159                 --backend=$(TRACE_BACKEND) \
160                 < $< > $@,"  GEN   trace.c")
161         @cmp -s $@ trace.c || cp $@ trace.c
163 trace.o: trace.c $(GENERATED_HEADERS)
165 trace-dtrace.h: trace-dtrace.dtrace
166         $(call quiet-command,dtrace -o $@ -h -s $<, "  GEN   trace-dtrace.h")
168 # Normal practice is to name DTrace probe file with a '.d' extension
169 # but that gets picked up by QEMU's Makefile as an external dependency
170 # rule file. So we use '.dtrace' instead
171 trace-dtrace.dtrace: trace-dtrace.dtrace-timestamp
172 trace-dtrace.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
173         $(call quiet-command,$(TRACETOOL) \
174                 --format=d \
175                 --backend=$(TRACE_BACKEND) \
176                 < $< > $@,"  GEN   trace-dtrace.dtrace")
177         @cmp -s $@ trace-dtrace.dtrace || cp $@ trace-dtrace.dtrace
179 trace-dtrace.o: trace-dtrace.dtrace $(GENERATED_HEADERS)
180         $(call quiet-command,dtrace -o $@ -G -s $<, "  GEN   trace-dtrace.o")
182 ifeq ($(LIBTOOL),)
183 trace-dtrace.lo: trace-dtrace.dtrace
184         @echo "missing libtool. please install and rerun configure."; exit 1
185 else
186 trace-dtrace.lo: trace-dtrace.dtrace
187         $(call quiet-command,$(LIBTOOL) --mode=compile --tag=CC dtrace -o $@ -G -s $<, "  lt GEN trace-dtrace.o")
188 endif
190 trace/simple.o: trace/simple.c $(GENERATED_HEADERS)
192 trace-obj-$(CONFIG_TRACE_DTRACE) += trace-dtrace.o
193 ifneq ($(TRACE_BACKEND),dtrace)
194 trace-obj-y = trace.o
195 endif
197 trace-obj-$(CONFIG_TRACE_DEFAULT) += trace/default.o
198 trace-obj-$(CONFIG_TRACE_SIMPLE) += trace/simple.o
199 trace-obj-$(CONFIG_TRACE_SIMPLE) += qemu-timer-common.o
200 trace-obj-$(CONFIG_TRACE_STDERR) += trace/stderr.o
201 trace-obj-y += trace/control.o
203 $(trace-obj-y): $(GENERATED_HEADERS)
205 ######################################################################
206 # smartcard
208 libcacard-y += libcacard/cac.o libcacard/event.o
209 libcacard-y += libcacard/vcard.o libcacard/vreader.o
210 libcacard-y += libcacard/vcard_emul_nss.o
211 libcacard-y += libcacard/vcard_emul_type.o
212 libcacard-y += libcacard/card_7816.o
214 common-obj-$(CONFIG_SMARTCARD_NSS) += $(libcacard-y)
216 ######################################################################
217 # qapi
219 qapi-obj-y = qapi/
220 qapi-obj-y += qapi-types.o qapi-visit.o
222 common-obj-y += qmp-marshal.o qapi-visit.o qapi-types.o
223 common-obj-y += qmp.o hmp.o
225 universal-obj-y += $(qapi-obj-y)
227 ######################################################################
228 # guest agent
230 qga-obj-y = qga/ qemu-ga.o module.o
231 qga-obj-$(CONFIG_WIN32) += oslib-win32.o
232 qga-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-sockets.o qemu-option.o
234 vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
236 vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
238 QEMU_CFLAGS+=$(GLIB_CFLAGS)
240 nested-vars += \
241         qga-obj-y \
242         block-obj-y \
243         qom-obj-y \
244         qapi-obj-y \
245         user-obj-y \
246         common-obj-y \
247         extra-obj-y
248 dummy := $(call unnest-vars)