Statistics
| Branch: | Revision:

root / Makefile.objs @ fc22118d

History | View | Annotate | Download (9.8 kB)

1 0e8c9214 Andreas Färber
#######################################################################
2 0e8c9214 Andreas Färber
# QObject
3 0e8c9214 Andreas Färber
qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
4 0e8c9214 Andreas Färber
qobject-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o
5 0e8c9214 Andreas Färber
qobject-obj-y += qerror.o
6 0e8c9214 Andreas Färber
7 0e8c9214 Andreas Färber
#######################################################################
8 0e8c9214 Andreas Färber
# block-obj-y is code used by both qemu system emulation and qemu-img
9 0e8c9214 Andreas Färber
10 0e8c9214 Andreas Färber
block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
11 25920d6a Kevin Wolf
block-obj-y += nbd.o block.o aio.o aes.o osdep.o qemu-config.o
12 0e8c9214 Andreas Färber
block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
13 0e8c9214 Andreas Färber
block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
14 0e8c9214 Andreas Färber
15 84a12e66 Christoph Hellwig
block-nested-y += raw.o cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
16 0e8c9214 Andreas Färber
block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
17 d9d33417 Stefan Hajnoczi
block-nested-y += parallels.o nbd.o blkdebug.o sheepdog.o blkverify.o
18 0e8c9214 Andreas Färber
block-nested-$(CONFIG_WIN32) += raw-win32.o
19 0e8c9214 Andreas Färber
block-nested-$(CONFIG_POSIX) += raw-posix.o
20 0e8c9214 Andreas Färber
block-nested-$(CONFIG_CURL) += curl.o
21 0e8c9214 Andreas Färber
22 0e8c9214 Andreas Färber
block-obj-y +=  $(addprefix block/, $(block-nested-y))
23 0e8c9214 Andreas Färber
24 0e8c9214 Andreas Färber
net-obj-y = net.o
25 0e8c9214 Andreas Färber
net-nested-y = queue.o checksum.o util.o
26 0e8c9214 Andreas Färber
net-nested-y += socket.o
27 0e8c9214 Andreas Färber
net-nested-y += dump.o
28 0e8c9214 Andreas Färber
net-nested-$(CONFIG_POSIX) += tap.o
29 0e8c9214 Andreas Färber
net-nested-$(CONFIG_LINUX) += tap-linux.o
30 0e8c9214 Andreas Färber
net-nested-$(CONFIG_WIN32) += tap-win32.o
31 0e8c9214 Andreas Färber
net-nested-$(CONFIG_BSD) += tap-bsd.o
32 0e8c9214 Andreas Färber
net-nested-$(CONFIG_SOLARIS) += tap-solaris.o
33 0e8c9214 Andreas Färber
net-nested-$(CONFIG_AIX) += tap-aix.o
34 3ee66dfa Andreas Färber
net-nested-$(CONFIG_HAIKU) += tap-haiku.o
35 0e8c9214 Andreas Färber
net-nested-$(CONFIG_SLIRP) += slirp.o
36 0e8c9214 Andreas Färber
net-nested-$(CONFIG_VDE) += vde.o
37 0e8c9214 Andreas Färber
net-obj-y += $(addprefix net/, $(net-nested-y))
38 0e8c9214 Andreas Färber
39 758e8e38 Venkateswararao Jujjuri (JV)
fsdev-nested-$(CONFIG_VIRTFS) = qemu-fsdev.o
40 758e8e38 Venkateswararao Jujjuri (JV)
fsdev-obj-$(CONFIG_VIRTFS) += $(addprefix fsdev/, $(fsdev-nested-y))
41 74db920c Gautham R Shenoy
42 0e8c9214 Andreas Färber
######################################################################
43 0e8c9214 Andreas Färber
# libqemu_common.a: Target independent part of system emulation. The
44 0e8c9214 Andreas Färber
# long term path is to suppress *all* target specific code in case of
45 0e8c9214 Andreas Färber
# system emulation, i.e. a single QEMU executable should support all
46 0e8c9214 Andreas Färber
# CPUs and machines.
47 0e8c9214 Andreas Färber
48 666daa68 Markus Armbruster
common-obj-y = $(block-obj-y) blockdev.o
49 0e8c9214 Andreas Färber
common-obj-y += $(net-obj-y)
50 0e8c9214 Andreas Färber
common-obj-y += $(qobject-obj-y)
51 74db920c Gautham R Shenoy
common-obj-$(CONFIG_LINUX) += $(fsdev-obj-$(CONFIG_LINUX))
52 254e5950 Gerd Hoffmann
common-obj-y += readline.o console.o cursor.o async.o qemu-error.o
53 b0cb640a Blue Swirl
common-obj-$(CONFIG_WIN32) += os-win32.o
54 b0cb640a Blue Swirl
common-obj-$(CONFIG_POSIX) += os-posix.o
55 254e5950 Gerd Hoffmann
56 0e8c9214 Andreas Färber
common-obj-y += tcg-runtime.o host-utils.o
57 8f0056b7 Paolo Bonzini
common-obj-y += irq.o ioport.o input.o
58 0e8c9214 Andreas Färber
common-obj-$(CONFIG_PTIMER) += ptimer.o
59 0e8c9214 Andreas Färber
common-obj-$(CONFIG_MAX7310) += max7310.o
60 0e8c9214 Andreas Färber
common-obj-$(CONFIG_WM8750) += wm8750.o
61 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TWL92230) += twl92230.o
62 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TSC2005) += tsc2005.o
63 0e8c9214 Andreas Färber
common-obj-$(CONFIG_LM832X) += lm832x.o
64 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TMP105) += tmp105.o
65 0e8c9214 Andreas Färber
common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o
66 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSD0303) += ssd0303.o
67 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSD0323) += ssd0323.o
68 0e8c9214 Andreas Färber
common-obj-$(CONFIG_ADS7846) += ads7846.o
69 0e8c9214 Andreas Färber
common-obj-$(CONFIG_MAX111X) += max111x.o
70 0e8c9214 Andreas Färber
common-obj-$(CONFIG_DS1338) += ds1338.o
71 0e8c9214 Andreas Färber
common-obj-y += i2c.o smbus.o smbus_eeprom.o
72 0e8c9214 Andreas Färber
common-obj-y += eeprom93xx.o
73 0e8c9214 Andreas Färber
common-obj-y += scsi-disk.o cdrom.o
74 0e8c9214 Andreas Färber
common-obj-y += scsi-generic.o scsi-bus.o
75 0e8c9214 Andreas Färber
common-obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
76 0e8c9214 Andreas Färber
common-obj-y += usb-serial.o usb-net.o usb-bus.o
77 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSI) += ssi.o
78 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSI_SD) += ssi-sd.o
79 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SD) += sd.o
80 0e8c9214 Andreas Färber
common-obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
81 0e8c9214 Andreas Färber
common-obj-y += bt-hci-csr.o
82 0e8c9214 Andreas Färber
common-obj-y += buffered_file.o migration.o migration-tcp.o qemu-sockets.o
83 0e8c9214 Andreas Färber
common-obj-y += qemu-char.o savevm.o #aio.o
84 0e8c9214 Andreas Färber
common-obj-y += msmouse.o ps2.o
85 0e8c9214 Andreas Färber
common-obj-y += qdev.o qdev-properties.o
86 25920d6a Kevin Wolf
common-obj-y += block-migration.o
87 d6d94fc3 Gerd Hoffmann
common-obj-y += pflib.o
88 0e8c9214 Andreas Färber
89 0e8c9214 Andreas Färber
common-obj-$(CONFIG_BRLAPI) += baum.o
90 0e8c9214 Andreas Färber
common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
91 9fe6de94 Blue Swirl
common-obj-$(CONFIG_WIN32) += version.o
92 0e8c9214 Andreas Färber
93 a3e22260 Gerd Hoffmann
common-obj-$(CONFIG_SPICE) += ui/spice-core.o ui/spice-input.o ui/spice-display.o
94 29b0040b Gerd Hoffmann
95 0e8c9214 Andreas Färber
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
96 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_SDL) += sdlaudio.o
97 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_OSS) += ossaudio.o
98 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
99 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
100 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
101 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
102 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ESD) += esdaudio.o
103 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_PA) += paaudio.o
104 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_WINWAVE) += winwaveaudio.o
105 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
106 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_WIN_INT) += audio_win_int.o
107 0e8c9214 Andreas Färber
audio-obj-y += wavcapture.o
108 0e8c9214 Andreas Färber
common-obj-y += $(addprefix audio/, $(audio-obj-y))
109 0e8c9214 Andreas Färber
110 3e230dd2 Corentin Chary
ui-obj-y += keymaps.o
111 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
112 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_CURSES) += curses.o
113 3e230dd2 Corentin Chary
ui-obj-y += vnc.o d3des.o
114 245f7b51 Corentin Chary
ui-obj-y += vnc-enc-zlib.o vnc-enc-hextile.o
115 5136a052 Corentin Chary
ui-obj-y += vnc-enc-tight.o vnc-palette.o
116 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
117 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
118 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_COCOA) += cocoa.o
119 bd023f95 Corentin Chary
ifdef CONFIG_VNC_THREAD
120 bd023f95 Corentin Chary
ui-obj-y += vnc-jobs-async.o
121 bd023f95 Corentin Chary
else
122 bd023f95 Corentin Chary
ui-obj-y += vnc-jobs-sync.o
123 bd023f95 Corentin Chary
endif
124 3e230dd2 Corentin Chary
common-obj-y += $(addprefix ui/, $(ui-obj-y))
125 3e230dd2 Corentin Chary
126 3e230dd2 Corentin Chary
common-obj-y += iov.o acl.o
127 bd023f95 Corentin Chary
common-obj-$(CONFIG_THREAD) += qemu-thread.o
128 d3538b45 Blue Swirl
common-obj-y += notify.o event_notifier.o
129 29e922b6 Blue Swirl
common-obj-y += qemu-timer.o
130 0e8c9214 Andreas Färber
131 0e8c9214 Andreas Färber
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
132 0e8c9214 Andreas Färber
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
133 0e8c9214 Andreas Färber
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
134 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
135 0e8c9214 Andreas Färber
136 0e8c9214 Andreas Färber
# xen backend driver support
137 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
138 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
139 0e8c9214 Andreas Färber
140 0e8c9214 Andreas Färber
######################################################################
141 0e8c9214 Andreas Färber
# libuser
142 0e8c9214 Andreas Färber
143 0e8c9214 Andreas Färber
user-obj-y =
144 0e8c9214 Andreas Färber
user-obj-y += envlist.o path.o
145 0e8c9214 Andreas Färber
user-obj-y += tcg-runtime.o host-utils.o
146 0e8c9214 Andreas Färber
user-obj-y += cutils.o cache-utils.o
147 0e8c9214 Andreas Färber
148 0e8c9214 Andreas Färber
######################################################################
149 0e8c9214 Andreas Färber
# libhw
150 0e8c9214 Andreas Färber
151 0e8c9214 Andreas Färber
hw-obj-y =
152 04c9a0cb Blue Swirl
hw-obj-y += vl.o loader.o
153 b305b9d7 Alexander Graf
hw-obj-y += virtio.o virtio-console.o
154 952760bb Blue Swirl
hw-obj-y += fw_cfg.o pci.o pci_host.o pcie_host.o
155 0e8c9214 Andreas Färber
hw-obj-y += watchdog.o
156 84108e12 Blue Swirl
hw-obj-$(CONFIG_ISA_MMIO) += isa_mmio.o
157 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ECC) += ecc.o
158 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_NAND) += nand.o
159 3d08ff69 Blue Swirl
hw-obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o
160 5f9fc5ad Blue Swirl
hw-obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o
161 0e8c9214 Andreas Färber
162 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_M48T59) += m48t59.o
163 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESCC) += escc.o
164 676d9b9b Artyom Tarasenko
hw-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o
165 0e8c9214 Andreas Färber
166 2d48377a Blue Swirl
hw-obj-$(CONFIG_SERIAL) += serial.o
167 b9945046 Blue Swirl
hw-obj-$(CONFIG_PARALLEL) += parallel.o
168 df632778 Blue Swirl
hw-obj-$(CONFIG_I8254) += i8254.o
169 71093711 Blue Swirl
hw-obj-$(CONFIG_PCSPK) += pcspk.o
170 956a3e6b Blue Swirl
hw-obj-$(CONFIG_PCKBD) += pckbd.o
171 4c65f1e5 Blue Swirl
hw-obj-$(CONFIG_USB_UHCI) += usb-uhci.o
172 35da37e1 Blue Swirl
hw-obj-$(CONFIG_FDC) += fdc.o
173 c69ea0df Blue Swirl
hw-obj-$(CONFIG_ACPI) += acpi.o acpi_piix4.o
174 c69ea0df Blue Swirl
hw-obj-$(CONFIG_APM) += pm_smbus.o apm.o
175 4556bd8b Blue Swirl
hw-obj-$(CONFIG_DMA) += dma.o
176 add85a76 Blue Swirl
177 add85a76 Blue Swirl
# PPC devices
178 5c4532ee Blue Swirl
hw-obj-$(CONFIG_OPENPIC) += openpic.o
179 add85a76 Blue Swirl
hw-obj-$(CONFIG_PREP_PCI) += prep_pci.o
180 2b5eb371 Blue Swirl
# Mac shared devices
181 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MACIO) += macio.o
182 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_CUDA) += cuda.o
183 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_ADB) += adb.o
184 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MAC_NVRAM) += mac_nvram.o
185 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MAC_DBDMA) += mac_dbdma.o
186 2b5eb371 Blue Swirl
# OldWorld PowerMac
187 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_HEATHROW_PIC) += heathrow_pic.o
188 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_GRACKLE_PCI) += grackle_pci.o
189 2b5eb371 Blue Swirl
# NewWorld PowerMac
190 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_UNIN_PCI) += unin_pci.o
191 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_DEC_PCI) += dec_pci.o
192 2b5eb371 Blue Swirl
# PowerPC E500 boards
193 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_PPCE500_PCI) += ppce500_pci.o
194 b9945046 Blue Swirl
195 08af49da Blue Swirl
# MIPS devices
196 08af49da Blue Swirl
hw-obj-$(CONFIG_PIIX4) += piix4.o
197 08af49da Blue Swirl
198 0e8c9214 Andreas Färber
# PCI watchdog devices
199 0e8c9214 Andreas Färber
hw-obj-y += wdt_i6300esb.o
200 0e8c9214 Andreas Färber
201 0e8c9214 Andreas Färber
hw-obj-y += msix.o
202 0e8c9214 Andreas Färber
203 0e8c9214 Andreas Färber
# PCI network cards
204 0e8c9214 Andreas Färber
hw-obj-y += ne2000.o
205 7161e571 Blue Swirl
hw-obj-y += eepro100.o
206 7161e571 Blue Swirl
hw-obj-y += pcnet.o
207 0e8c9214 Andreas Färber
208 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_SMC91C111) += smc91c111.o
209 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_LAN9118) += lan9118.o
210 d3ffc7a6 Blue Swirl
hw-obj-$(CONFIG_NE2000_ISA) += ne2000-isa.o
211 0e8c9214 Andreas Färber
212 9953b2fc Blue Swirl
# IDE
213 f7736b91 Blue Swirl
hw-obj-$(CONFIG_IDE_CORE) += ide/core.o
214 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_QDEV) += ide/qdev.o
215 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PCI) += ide/pci.o
216 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_ISA) += ide/isa.o
217 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PIIX) += ide/piix.o
218 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_CMD646) += ide/cmd646.o
219 02c7c992 Blue Swirl
hw-obj-$(CONFIG_IDE_MACIO) += ide/macio.o
220 016512f3 Huacai Chen
hw-obj-$(CONFIG_IDE_VIA) += ide/via.o
221 9953b2fc Blue Swirl
222 0e8c9214 Andreas Färber
# SCSI layer
223 0e8c9214 Andreas Färber
hw-obj-y += lsi53c895a.o
224 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESP) += esp.o
225 0e8c9214 Andreas Färber
226 0e8c9214 Andreas Färber
hw-obj-y += dma-helpers.o sysbus.o isa-bus.o
227 61d3cf93 Paul Brook
hw-obj-y += qdev-addr.o
228 4d904533 Blue Swirl
229 1afdfddc Blue Swirl
# VGA
230 1afdfddc Blue Swirl
hw-obj-$(CONFIG_VGA_PCI) += vga-pci.o
231 7f55c7ce Blue Swirl
hw-obj-$(CONFIG_VGA_ISA) += vga-isa.o
232 b970ea8f Blue Swirl
hw-obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o
233 57448a97 Blue Swirl
hw-obj-$(CONFIG_VMWARE_VGA) += vmware_vga.o
234 b970ea8f Blue Swirl
235 b970ea8f Blue Swirl
hw-obj-$(CONFIG_RC4030) += rc4030.o
236 b970ea8f Blue Swirl
hw-obj-$(CONFIG_DP8393X) += dp8393x.o
237 b970ea8f Blue Swirl
hw-obj-$(CONFIG_DS1225Y) += ds1225y.o
238 b970ea8f Blue Swirl
hw-obj-$(CONFIG_MIPSNET) += mipsnet.o
239 1afdfddc Blue Swirl
240 70615c38 Blue Swirl
# Sound
241 70615c38 Blue Swirl
sound-obj-y =
242 70615c38 Blue Swirl
sound-obj-$(CONFIG_SB16) += sb16.o
243 70615c38 Blue Swirl
sound-obj-$(CONFIG_ES1370) += es1370.o
244 70615c38 Blue Swirl
sound-obj-$(CONFIG_AC97) += ac97.o
245 70615c38 Blue Swirl
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
246 70615c38 Blue Swirl
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
247 70615c38 Blue Swirl
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
248 70615c38 Blue Swirl
249 70615c38 Blue Swirl
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
250 70615c38 Blue Swirl
hw-obj-$(CONFIG_SOUND) += $(sound-obj-y)
251 70615c38 Blue Swirl
252 fc22118d Aneesh Kumar K.V
hw-obj-$(CONFIG_VIRTFS) += virtio-9p-debug.o virtio-9p-local.o virtio-9p-xattr.o
253 fc22118d Aneesh Kumar K.V
hw-obj-$(CONFIG_VIRTFS) += virtio-9p-xattr-user.o
254 d08555c1 Blue Swirl
255 4d904533 Blue Swirl
######################################################################
256 4d904533 Blue Swirl
# libdis
257 4d904533 Blue Swirl
# NOTE: the disassembler code is only needed for debugging
258 4d904533 Blue Swirl
259 4d904533 Blue Swirl
libdis-y =
260 4d904533 Blue Swirl
libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
261 4d904533 Blue Swirl
libdis-$(CONFIG_ARM_DIS) += arm-dis.o
262 4d904533 Blue Swirl
libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
263 4d904533 Blue Swirl
libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
264 4d904533 Blue Swirl
libdis-$(CONFIG_I386_DIS) += i386-dis.o
265 903ec55c Aurelien Jarno
libdis-$(CONFIG_IA64_DIS) += ia64-dis.o
266 4d904533 Blue Swirl
libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
267 4d904533 Blue Swirl
libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
268 4d904533 Blue Swirl
libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
269 4d904533 Blue Swirl
libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
270 4d904533 Blue Swirl
libdis-$(CONFIG_S390_DIS) += s390-dis.o
271 4d904533 Blue Swirl
libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
272 4d904533 Blue Swirl
libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o
273 ad96090a Blue Swirl
274 94a420b1 Stefan Hajnoczi
######################################################################
275 94a420b1 Stefan Hajnoczi
# trace
276 94a420b1 Stefan Hajnoczi
277 94a420b1 Stefan Hajnoczi
trace-obj-y = trace.o
278 26f7227b Stefan Hajnoczi
ifeq ($(TRACE_BACKEND),simple)
279 26f7227b Stefan Hajnoczi
trace-obj-y += simpletrace.o
280 26f7227b Stefan Hajnoczi
endif
281 94a420b1 Stefan Hajnoczi
282 ad96090a Blue Swirl
vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
283 ad96090a Blue Swirl
284 ad96090a Blue Swirl
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
285 ad96090a Blue Swirl
286 9f16732a Jes Sorensen
vl.o: qemu-options.def
287 59a5264b Jes Sorensen
os-posix.o: qemu-options.def
288 59a5264b Jes Sorensen
os-win32.o: qemu-options.def
289 ad96090a Blue Swirl
290 9f16732a Jes Sorensen
qemu-options.def: $(SRC_PATH)/qemu-options.hx
291 ad96090a Blue Swirl
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")