Statistics
| Branch: | Revision:

root / Makefile.objs @ 64dc9c31

History | View | Annotate | Download (6.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 0e8c9214 Andreas Färber
block-obj-y += nbd.o block.o aio.o aes.o osdep.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 0e8c9214 Andreas Färber
block-nested-y += 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 0e8c9214 Andreas Färber
block-nested-y += parallels.o nbd.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 0e8c9214 Andreas Färber
net-nested-$(CONFIG_SLIRP) += slirp.o
35 0e8c9214 Andreas Färber
net-nested-$(CONFIG_VDE) += vde.o
36 0e8c9214 Andreas Färber
net-obj-y += $(addprefix net/, $(net-nested-y))
37 0e8c9214 Andreas Färber
38 0e8c9214 Andreas Färber
######################################################################
39 0e8c9214 Andreas Färber
# libqemu_common.a: Target independent part of system emulation. The
40 0e8c9214 Andreas Färber
# long term path is to suppress *all* target specific code in case of
41 0e8c9214 Andreas Färber
# system emulation, i.e. a single QEMU executable should support all
42 0e8c9214 Andreas Färber
# CPUs and machines.
43 0e8c9214 Andreas Färber
44 0e8c9214 Andreas Färber
common-obj-y = $(block-obj-y)
45 0e8c9214 Andreas Färber
common-obj-y += $(net-obj-y)
46 0e8c9214 Andreas Färber
common-obj-y += $(qobject-obj-y)
47 64dc9c31 Blue Swirl
common-obj-y += readline.o console.o async.o
48 0e8c9214 Andreas Färber
49 0e8c9214 Andreas Färber
common-obj-y += tcg-runtime.o host-utils.o
50 8f0056b7 Paolo Bonzini
common-obj-y += irq.o ioport.o input.o
51 0e8c9214 Andreas Färber
common-obj-$(CONFIG_PTIMER) += ptimer.o
52 0e8c9214 Andreas Färber
common-obj-$(CONFIG_MAX7310) += max7310.o
53 0e8c9214 Andreas Färber
common-obj-$(CONFIG_WM8750) += wm8750.o
54 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TWL92230) += twl92230.o
55 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TSC2005) += tsc2005.o
56 0e8c9214 Andreas Färber
common-obj-$(CONFIG_LM832X) += lm832x.o
57 0e8c9214 Andreas Färber
common-obj-$(CONFIG_TMP105) += tmp105.o
58 0e8c9214 Andreas Färber
common-obj-$(CONFIG_STELLARIS_INPUT) += stellaris_input.o
59 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSD0303) += ssd0303.o
60 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSD0323) += ssd0323.o
61 0e8c9214 Andreas Färber
common-obj-$(CONFIG_ADS7846) += ads7846.o
62 0e8c9214 Andreas Färber
common-obj-$(CONFIG_MAX111X) += max111x.o
63 0e8c9214 Andreas Färber
common-obj-$(CONFIG_DS1338) += ds1338.o
64 0e8c9214 Andreas Färber
common-obj-y += i2c.o smbus.o smbus_eeprom.o
65 0e8c9214 Andreas Färber
common-obj-y += eeprom93xx.o
66 0e8c9214 Andreas Färber
common-obj-y += scsi-disk.o cdrom.o
67 0e8c9214 Andreas Färber
common-obj-y += scsi-generic.o scsi-bus.o
68 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
69 0e8c9214 Andreas Färber
common-obj-y += usb-serial.o usb-net.o usb-bus.o
70 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSI) += ssi.o
71 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SSI_SD) += ssi-sd.o
72 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SD) += sd.o
73 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
74 0e8c9214 Andreas Färber
common-obj-y += bt-hci-csr.o
75 0e8c9214 Andreas Färber
common-obj-y += buffered_file.o migration.o migration-tcp.o qemu-sockets.o
76 0e8c9214 Andreas Färber
common-obj-y += qemu-char.o savevm.o #aio.o
77 0e8c9214 Andreas Färber
common-obj-y += msmouse.o ps2.o
78 0e8c9214 Andreas Färber
common-obj-y += qdev.o qdev-properties.o
79 0e8c9214 Andreas Färber
common-obj-y += qemu-config.o block-migration.o
80 0e8c9214 Andreas Färber
81 0e8c9214 Andreas Färber
common-obj-$(CONFIG_BRLAPI) += baum.o
82 0e8c9214 Andreas Färber
common-obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
83 0e8c9214 Andreas Färber
84 0e8c9214 Andreas Färber
audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
85 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_SDL) += sdlaudio.o
86 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_OSS) += ossaudio.o
87 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
88 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ALSA) += alsaaudio.o
89 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
90 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_FMOD) += fmodaudio.o
91 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_ESD) += esdaudio.o
92 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_PA) += paaudio.o
93 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_WINWAVE) += winwaveaudio.o
94 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
95 0e8c9214 Andreas Färber
audio-obj-$(CONFIG_AUDIO_WIN_INT) += audio_win_int.o
96 0e8c9214 Andreas Färber
audio-obj-y += wavcapture.o
97 0e8c9214 Andreas Färber
common-obj-y += $(addprefix audio/, $(audio-obj-y))
98 0e8c9214 Andreas Färber
99 0e8c9214 Andreas Färber
common-obj-y += keymaps.o
100 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
101 0e8c9214 Andreas Färber
common-obj-$(CONFIG_CURSES) += curses.o
102 0e8c9214 Andreas Färber
common-obj-y += vnc.o acl.o d3des.o
103 0e8c9214 Andreas Färber
common-obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
104 0e8c9214 Andreas Färber
common-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
105 0e8c9214 Andreas Färber
common-obj-$(CONFIG_COCOA) += cocoa.o
106 0e8c9214 Andreas Färber
common-obj-$(CONFIG_IOTHREAD) += qemu-thread.o
107 d1e70c5e Anthony Liguori
common-obj-y += notify.o
108 0e8c9214 Andreas Färber
109 0e8c9214 Andreas Färber
slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
110 0e8c9214 Andreas Färber
slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
111 0e8c9214 Andreas Färber
slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
112 0e8c9214 Andreas Färber
common-obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
113 0e8c9214 Andreas Färber
114 0e8c9214 Andreas Färber
# xen backend driver support
115 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
116 0e8c9214 Andreas Färber
common-obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
117 0e8c9214 Andreas Färber
118 0e8c9214 Andreas Färber
######################################################################
119 0e8c9214 Andreas Färber
# libuser
120 0e8c9214 Andreas Färber
121 0e8c9214 Andreas Färber
user-obj-y =
122 0e8c9214 Andreas Färber
user-obj-y += envlist.o path.o
123 0e8c9214 Andreas Färber
user-obj-y += tcg-runtime.o host-utils.o
124 0e8c9214 Andreas Färber
user-obj-y += cutils.o cache-utils.o
125 0e8c9214 Andreas Färber
126 0e8c9214 Andreas Färber
######################################################################
127 0e8c9214 Andreas Färber
# libhw
128 0e8c9214 Andreas Färber
129 0e8c9214 Andreas Färber
hw-obj-y =
130 0e8c9214 Andreas Färber
hw-obj-y += loader.o
131 4c36a2ff Amit Shah
hw-obj-y += virtio.o virtio-console.o
132 0e8c9214 Andreas Färber
hw-obj-y += fw_cfg.o
133 0e8c9214 Andreas Färber
hw-obj-y += watchdog.o
134 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ECC) += ecc.o
135 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_NAND) += nand.o
136 0e8c9214 Andreas Färber
137 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_M48T59) += m48t59.o
138 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESCC) += escc.o
139 0e8c9214 Andreas Färber
140 b9945046 Blue Swirl
hw-obj-$(CONFIG_PARALLEL) += parallel.o
141 df632778 Blue Swirl
hw-obj-$(CONFIG_I8254) += i8254.o
142 71093711 Blue Swirl
hw-obj-$(CONFIG_PCSPK) += pcspk.o
143 4c65f1e5 Blue Swirl
hw-obj-$(CONFIG_USB_UHCI) += usb-uhci.o
144 35da37e1 Blue Swirl
hw-obj-$(CONFIG_FDC) += fdc.o
145 b9945046 Blue Swirl
146 0e8c9214 Andreas Färber
# PCI watchdog devices
147 0e8c9214 Andreas Färber
hw-obj-y += wdt_i6300esb.o
148 0e8c9214 Andreas Färber
149 0e8c9214 Andreas Färber
hw-obj-y += msix.o
150 0e8c9214 Andreas Färber
151 0e8c9214 Andreas Färber
# PCI network cards
152 0e8c9214 Andreas Färber
hw-obj-y += ne2000.o
153 0e8c9214 Andreas Färber
154 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_SMC91C111) += smc91c111.o
155 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_LAN9118) += lan9118.o
156 0e8c9214 Andreas Färber
157 9953b2fc Blue Swirl
# IDE
158 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_QDEV) += ide/qdev.o
159 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PCI) += ide/pci.o
160 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_ISA) += ide/isa.o
161 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_PIIX) += ide/piix.o
162 9953b2fc Blue Swirl
hw-obj-$(CONFIG_IDE_CMD646) += ide/cmd646.o
163 9953b2fc Blue Swirl
164 0e8c9214 Andreas Färber
# SCSI layer
165 0e8c9214 Andreas Färber
hw-obj-y += lsi53c895a.o
166 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_ESP) += esp.o
167 0e8c9214 Andreas Färber
168 0e8c9214 Andreas Färber
hw-obj-y += dma-helpers.o sysbus.o isa-bus.o
169 0e8c9214 Andreas Färber
hw-obj-$(CONFIG_QDEV_ADDR) += qdev-addr.o
170 4d904533 Blue Swirl
171 1afdfddc Blue Swirl
# VGA
172 1afdfddc Blue Swirl
hw-obj-$(CONFIG_VGA_PCI) += vga-pci.o
173 7f55c7ce Blue Swirl
hw-obj-$(CONFIG_VGA_ISA) += vga-isa.o
174 1afdfddc Blue Swirl
175 4d904533 Blue Swirl
######################################################################
176 4d904533 Blue Swirl
# libdis
177 4d904533 Blue Swirl
# NOTE: the disassembler code is only needed for debugging
178 4d904533 Blue Swirl
179 4d904533 Blue Swirl
libdis-y =
180 4d904533 Blue Swirl
libdis-$(CONFIG_ALPHA_DIS) += alpha-dis.o
181 4d904533 Blue Swirl
libdis-$(CONFIG_ARM_DIS) += arm-dis.o
182 4d904533 Blue Swirl
libdis-$(CONFIG_CRIS_DIS) += cris-dis.o
183 4d904533 Blue Swirl
libdis-$(CONFIG_HPPA_DIS) += hppa-dis.o
184 4d904533 Blue Swirl
libdis-$(CONFIG_I386_DIS) += i386-dis.o
185 4d904533 Blue Swirl
libdis-$(CONFIG_M68K_DIS) += m68k-dis.o
186 4d904533 Blue Swirl
libdis-$(CONFIG_MICROBLAZE_DIS) += microblaze-dis.o
187 4d904533 Blue Swirl
libdis-$(CONFIG_MIPS_DIS) += mips-dis.o
188 4d904533 Blue Swirl
libdis-$(CONFIG_PPC_DIS) += ppc-dis.o
189 4d904533 Blue Swirl
libdis-$(CONFIG_S390_DIS) += s390-dis.o
190 4d904533 Blue Swirl
libdis-$(CONFIG_SH4_DIS) += sh4-dis.o
191 4d904533 Blue Swirl
libdis-$(CONFIG_SPARC_DIS) += sparc-dis.o