Statistics
| Branch: | Revision:

root / Makefile.objs @ 3ee66dfa

History | View | Annotate | Download (9.6 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 0e8c9214 Andreas Färber
88 0e8c9214 Andreas Färber
common-obj-$(CONFIG_BRLAPI) += baum.o
89 0e8c9214 Andreas Färber
common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
90 9fe6de94 Blue Swirl
common-obj-$(CONFIG_WIN32) += version.o
91 0e8c9214 Andreas Färber
92 0e8c9214 Andreas Färber
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
93 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_SDL) += sdlaudio.o
94 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_OSS) += ossaudio.o
95 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
96 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
97 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
98 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
99 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ESD) += esdaudio.o
100 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_PA) += paaudio.o
101 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_WINWAVE) += winwaveaudio.o
102 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
103 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_WIN_INT) += audio_win_int.o
104 0e8c9214 Andreas Färber
audio-obj-y += wavcapture.o
105 0e8c9214 Andreas Färber
common-obj-y += $(addprefix audio/, $(audio-obj-y))
106 0e8c9214 Andreas Färber
107 3e230dd2 Corentin Chary
ui-obj-y += keymaps.o
108 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
109 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_CURSES) += curses.o
110 3e230dd2 Corentin Chary
ui-obj-y += vnc.o d3des.o
111 245f7b51 Corentin Chary
ui-obj-y += vnc-enc-zlib.o vnc-enc-hextile.o
112 5136a052 Corentin Chary
ui-obj-y += vnc-enc-tight.o vnc-palette.o
113 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
114 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
115 3e230dd2 Corentin Chary
ui-obj-$(CONFIG_COCOA) += cocoa.o
116 bd023f95 Corentin Chary
ifdef CONFIG_VNC_THREAD
117 bd023f95 Corentin Chary
ui-obj-y += vnc-jobs-async.o
118 bd023f95 Corentin Chary
else
119 bd023f95 Corentin Chary
ui-obj-y += vnc-jobs-sync.o
120 bd023f95 Corentin Chary
endif
121 3e230dd2 Corentin Chary
common-obj-y += $(addprefix ui/, $(ui-obj-y))
122 3e230dd2 Corentin Chary
123 3e230dd2 Corentin Chary
common-obj-y += iov.o acl.o
124 bd023f95 Corentin Chary
common-obj-$(CONFIG_THREAD) += qemu-thread.o
125 d3538b45 Blue Swirl
common-obj-y += notify.o event_notifier.o
126 29e922b6 Blue Swirl
common-obj-y += qemu-timer.o
127 0e8c9214 Andreas Färber
128 0e8c9214 Andreas Färber
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
129 0e8c9214 Andreas Färber
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
130 0e8c9214 Andreas Färber
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
131 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
132 0e8c9214 Andreas Färber
133 0e8c9214 Andreas Färber
# xen backend driver support
134 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
135 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
136 0e8c9214 Andreas Färber
137 0e8c9214 Andreas Färber
######################################################################
138 0e8c9214 Andreas Färber
# libuser
139 0e8c9214 Andreas Färber
140 0e8c9214 Andreas Färber
user-obj-y =
141 0e8c9214 Andreas Färber
user-obj-y += envlist.o path.o
142 0e8c9214 Andreas Färber
user-obj-y += tcg-runtime.o host-utils.o
143 0e8c9214 Andreas Färber
user-obj-y += cutils.o cache-utils.o
144 0e8c9214 Andreas Färber
145 0e8c9214 Andreas Färber
######################################################################
146 0e8c9214 Andreas Färber
# libhw
147 0e8c9214 Andreas Färber
148 0e8c9214 Andreas Färber
hw-obj-y =
149 04c9a0cb Blue Swirl
hw-obj-y += vl.o loader.o
150 b305b9d7 Alexander Graf
hw-obj-y += virtio.o virtio-console.o
151 952760bb Blue Swirl
hw-obj-y += fw_cfg.o pci.o pci_host.o pcie_host.o
152 0e8c9214 Andreas Färber
hw-obj-y += watchdog.o
153 84108e12 Blue Swirl
hw-obj-$(CONFIG_ISA_MMIO) += isa_mmio.o
154 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ECC) += ecc.o
155 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_NAND) += nand.o
156 3d08ff69 Blue Swirl
hw-obj-$(CONFIG_PFLASH_CFI01) += pflash_cfi01.o
157 5f9fc5ad Blue Swirl
hw-obj-$(CONFIG_PFLASH_CFI02) += pflash_cfi02.o
158 0e8c9214 Andreas Färber
159 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_M48T59) += m48t59.o
160 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESCC) += escc.o
161 676d9b9b Artyom Tarasenko
hw-obj-$(CONFIG_EMPTY_SLOT) += empty_slot.o
162 0e8c9214 Andreas Färber
163 2d48377a Blue Swirl
hw-obj-$(CONFIG_SERIAL) += serial.o
164 b9945046 Blue Swirl
hw-obj-$(CONFIG_PARALLEL) += parallel.o
165 df632778 Blue Swirl
hw-obj-$(CONFIG_I8254) += i8254.o
166 71093711 Blue Swirl
hw-obj-$(CONFIG_PCSPK) += pcspk.o
167 956a3e6b Blue Swirl
hw-obj-$(CONFIG_PCKBD) += pckbd.o
168 4c65f1e5 Blue Swirl
hw-obj-$(CONFIG_USB_UHCI) += usb-uhci.o
169 35da37e1 Blue Swirl
hw-obj-$(CONFIG_FDC) += fdc.o
170 c69ea0df Blue Swirl
hw-obj-$(CONFIG_ACPI) += acpi.o acpi_piix4.o
171 c69ea0df Blue Swirl
hw-obj-$(CONFIG_APM) += pm_smbus.o apm.o
172 4556bd8b Blue Swirl
hw-obj-$(CONFIG_DMA) += dma.o
173 add85a76 Blue Swirl
174 add85a76 Blue Swirl
# PPC devices
175 5c4532ee Blue Swirl
hw-obj-$(CONFIG_OPENPIC) += openpic.o
176 add85a76 Blue Swirl
hw-obj-$(CONFIG_PREP_PCI) += prep_pci.o
177 2b5eb371 Blue Swirl
# Mac shared devices
178 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MACIO) += macio.o
179 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_CUDA) += cuda.o
180 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_ADB) += adb.o
181 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MAC_NVRAM) += mac_nvram.o
182 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_MAC_DBDMA) += mac_dbdma.o
183 2b5eb371 Blue Swirl
# OldWorld PowerMac
184 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_HEATHROW_PIC) += heathrow_pic.o
185 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_GRACKLE_PCI) += grackle_pci.o
186 2b5eb371 Blue Swirl
# NewWorld PowerMac
187 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_UNIN_PCI) += unin_pci.o
188 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_DEC_PCI) += dec_pci.o
189 2b5eb371 Blue Swirl
# PowerPC E500 boards
190 2b5eb371 Blue Swirl
hw-obj-$(CONFIG_PPCE500_PCI) += ppce500_pci.o
191 b9945046 Blue Swirl
192 08af49da Blue Swirl
# MIPS devices
193 08af49da Blue Swirl
hw-obj-$(CONFIG_PIIX4) += piix4.o
194 08af49da Blue Swirl
195 0e8c9214 Andreas Färber
# PCI watchdog devices
196 0e8c9214 Andreas Färber
hw-obj-y += wdt_i6300esb.o
197 0e8c9214 Andreas Färber
198 0e8c9214 Andreas Färber
hw-obj-y += msix.o
199 0e8c9214 Andreas Färber
200 0e8c9214 Andreas Färber
# PCI network cards
201 0e8c9214 Andreas Färber
hw-obj-y += ne2000.o
202 7161e571 Blue Swirl
hw-obj-y += eepro100.o
203 7161e571 Blue Swirl
hw-obj-y += pcnet.o
204 0e8c9214 Andreas Färber
205 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_SMC91C111) += smc91c111.o
206 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_LAN9118) += lan9118.o
207 d3ffc7a6 Blue Swirl
hw-obj-$(CONFIG_NE2000_ISA) += ne2000-isa.o
208 0e8c9214 Andreas Färber
209 9953b2fc Blue Swirl
# IDE
210 f7736b91 Blue Swirl
hw-obj-$(CONFIG_IDE_CORE) += ide/core.o
211 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_QDEV) += ide/qdev.o
212 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PCI) += ide/pci.o
213 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_ISA) += ide/isa.o
214 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PIIX) += ide/piix.o
215 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_CMD646) += ide/cmd646.o
216 02c7c992 Blue Swirl
hw-obj-$(CONFIG_IDE_MACIO) += ide/macio.o
217 016512f3 Huacai Chen
hw-obj-$(CONFIG_IDE_VIA) += ide/via.o
218 9953b2fc Blue Swirl
219 0e8c9214 Andreas Färber
# SCSI layer
220 0e8c9214 Andreas Färber
hw-obj-y += lsi53c895a.o
221 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESP) += esp.o
222 0e8c9214 Andreas Färber
223 0e8c9214 Andreas Färber
hw-obj-y += dma-helpers.o sysbus.o isa-bus.o
224 61d3cf93 Paul Brook
hw-obj-y += qdev-addr.o
225 4d904533 Blue Swirl
226 1afdfddc Blue Swirl
# VGA
227 1afdfddc Blue Swirl
hw-obj-$(CONFIG_VGA_PCI) += vga-pci.o
228 7f55c7ce Blue Swirl
hw-obj-$(CONFIG_VGA_ISA) += vga-isa.o
229 b970ea8f Blue Swirl
hw-obj-$(CONFIG_VGA_ISA_MM) += vga-isa-mm.o
230 57448a97 Blue Swirl
hw-obj-$(CONFIG_VMWARE_VGA) += vmware_vga.o
231 b970ea8f Blue Swirl
232 b970ea8f Blue Swirl
hw-obj-$(CONFIG_RC4030) += rc4030.o
233 b970ea8f Blue Swirl
hw-obj-$(CONFIG_DP8393X) += dp8393x.o
234 b970ea8f Blue Swirl
hw-obj-$(CONFIG_DS1225Y) += ds1225y.o
235 b970ea8f Blue Swirl
hw-obj-$(CONFIG_MIPSNET) += mipsnet.o
236 1afdfddc Blue Swirl
237 70615c38 Blue Swirl
# Sound
238 70615c38 Blue Swirl
sound-obj-y =
239 70615c38 Blue Swirl
sound-obj-$(CONFIG_SB16) += sb16.o
240 70615c38 Blue Swirl
sound-obj-$(CONFIG_ES1370) += es1370.o
241 70615c38 Blue Swirl
sound-obj-$(CONFIG_AC97) += ac97.o
242 70615c38 Blue Swirl
sound-obj-$(CONFIG_ADLIB) += fmopl.o adlib.o
243 70615c38 Blue Swirl
sound-obj-$(CONFIG_GUS) += gus.o gusemu_hal.o gusemu_mixer.o
244 70615c38 Blue Swirl
sound-obj-$(CONFIG_CS4231A) += cs4231a.o
245 70615c38 Blue Swirl
246 70615c38 Blue Swirl
adlib.o fmopl.o: QEMU_CFLAGS += -DBUILD_Y8950=0
247 70615c38 Blue Swirl
hw-obj-$(CONFIG_SOUND) += $(sound-obj-y)
248 70615c38 Blue Swirl
249 758e8e38 Venkateswararao Jujjuri (JV)
hw-obj-$(CONFIG_VIRTFS) += virtio-9p-debug.o virtio-9p-local.o
250 d08555c1 Blue Swirl
251 4d904533 Blue Swirl
######################################################################
252 4d904533 Blue Swirl
# libdis
253 4d904533 Blue Swirl
# NOTE: the disassembler code is only needed for debugging
254 4d904533 Blue Swirl
255 4d904533 Blue Swirl
libdis-y =
256 4d904533 Blue Swirl
libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
257 4d904533 Blue Swirl
libdis-$(CONFIG_ARM_DIS) += arm-dis.o
258 4d904533 Blue Swirl
libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
259 4d904533 Blue Swirl
libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
260 4d904533 Blue Swirl
libdis-$(CONFIG_I386_DIS) += i386-dis.o
261 903ec55c Aurelien Jarno
libdis-$(CONFIG_IA64_DIS) += ia64-dis.o
262 4d904533 Blue Swirl
libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
263 4d904533 Blue Swirl
libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
264 4d904533 Blue Swirl
libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
265 4d904533 Blue Swirl
libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
266 4d904533 Blue Swirl
libdis-$(CONFIG_S390_DIS) += s390-dis.o
267 4d904533 Blue Swirl
libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
268 4d904533 Blue Swirl
libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o
269 ad96090a Blue Swirl
270 94a420b1 Stefan Hajnoczi
######################################################################
271 94a420b1 Stefan Hajnoczi
# trace
272 94a420b1 Stefan Hajnoczi
273 94a420b1 Stefan Hajnoczi
trace-obj-y = trace.o
274 26f7227b Stefan Hajnoczi
ifeq ($(TRACE_BACKEND),simple)
275 26f7227b Stefan Hajnoczi
trace-obj-y += simpletrace.o
276 26f7227b Stefan Hajnoczi
endif
277 94a420b1 Stefan Hajnoczi
278 ad96090a Blue Swirl
vl.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
279 ad96090a Blue Swirl
280 ad96090a Blue Swirl
vl.o: QEMU_CFLAGS+=$(SDL_CFLAGS)
281 ad96090a Blue Swirl
282 9f16732a Jes Sorensen
vl.o: qemu-options.def
283 59a5264b Jes Sorensen
os-posix.o: qemu-options.def
284 59a5264b Jes Sorensen
os-win32.o: qemu-options.def
285 ad96090a Blue Swirl
286 9f16732a Jes Sorensen
qemu-options.def: $(SRC_PATH)/qemu-options.hx
287 ad96090a Blue Swirl
	$(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")