Statistics
| Branch: | Revision:

root / Makefile.objs @ d61a4ce8

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