ide/pci: convert to qdev.
[qemu] / Makefile
1 # Makefile for QEMU.
2
3 ifneq ($(wildcard config-host.mak),)
4 # Put the all: rule here so that config-host.mak can contain dependencies.
5 all: build-all
6 include config-host.mak
7 include $(SRC_PATH)/rules.mak
8 else
9 config-host.mak:
10         @echo "Please call configure before running make!"
11         @exit 1
12 endif
13
14 .PHONY: all clean cscope distclean dvi html info install install-doc \
15         recurse-all speed tar tarbin test
16
17 VPATH=$(SRC_PATH):$(SRC_PATH)/hw
18
19 LIBS+=-lz $(LIBS_TOOLS)
20
21 ifdef BUILD_DOCS
22 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
23 else
24 DOCS=
25 endif
26
27 build-all: $(TOOLS) $(DOCS) recurse-all
28
29 config-host.mak: configure
30 ifneq ($(wildcard config-host.mak),)
31         @echo $@ is out-of-date, running configure
32         @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
33 endif
34
35 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
36 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
37
38 subdir-%:
39         $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
40
41 $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
42
43 ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
44 romsubdir-%:
45         $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
46
47 ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
48
49 recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
50
51 #######################################################################
52 # block-obj-y is code used by both qemu system emulation and qemu-img
53
54 block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
55 block-obj-y += nbd.o block.o aio.o aes.o osdep.o
56 block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
57 block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
58
59 block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
60 block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
61 block-nested-y += parallels.o nbd.o
62 block-nested-$(CONFIG_WIN32) += raw-win32.o
63 block-nested-$(CONFIG_POSIX) += raw-posix.o
64 block-nested-$(CONFIG_CURL) += curl.o
65
66 block-obj-y +=  $(addprefix block/, $(block-nested-y))
67
68 ######################################################################
69 # libqemu_common.a: Target independent part of system emulation. The
70 # long term path is to suppress *all* target specific code in case of
71 # system emulation, i.e. a single QEMU executable should support all
72 # CPUs and machines.
73
74 obj-y = $(block-obj-y)
75 obj-y += readline.o console.o
76
77 obj-y += irq.o ptimer.o
78 obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
79 obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
80 obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
81 obj-y += scsi-disk.o cdrom.o
82 obj-y += scsi-generic.o scsi-bus.o
83 obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
84 obj-y += usb-serial.o usb-net.o usb-bus.o
85 obj-y += sd.o ssi-sd.o
86 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
87 obj-y += bt-hci-csr.o
88 obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
89 obj-y += qemu-char.o aio.o net-checksum.o savevm.o
90 obj-y += msmouse.o ps2.o
91 obj-y += qdev.o qdev-properties.o ssi.o
92 obj-y += qint.o qstring.o qdict.o
93
94 obj-$(CONFIG_BRLAPI) += baum.o
95 obj-$(CONFIG_WIN32) += tap-win32.o
96 obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
97
98 audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
99
100 audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
101 audio-obj-$(CONFIG_SDL) += sdlaudio.o
102 audio-obj-$(CONFIG_OSS) += ossaudio.o
103 audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
104 audio-obj-$(CONFIG_ALSA) += alsaaudio.o
105 audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
106 audio-obj-$(CONFIG_FMOD) += fmodaudio.o
107 audio-obj-$(CONFIG_ESD) += esdaudio.o
108 audio-obj-$(CONFIG_PA) += paaudio.o
109 audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
110 audio-obj-y += wavcapture.o
111 obj-y += $(addprefix audio/, $(audio-obj-y))
112
113 obj-y += keymaps.o
114 obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
115 obj-$(CONFIG_CURSES) += curses.o
116 obj-y += vnc.o acl.o d3des.o
117 obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
118 obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
119 obj-$(CONFIG_COCOA) += cocoa.o
120 obj-$(CONFIG_IOTHREAD) += qemu-thread.o
121
122 slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
123 slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
124 slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
125 obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
126
127 # xen backend driver support
128 obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
129 obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
130
131 QEMU_CFLAGS+=$(CURL_CFLAGS)
132
133 cocoa.o: cocoa.m
134
135 keymaps.o: keymaps.c keymaps.h
136
137 sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
138
139 sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
140
141 sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
142
143 acl.o: acl.h acl.c
144
145 vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
146
147 vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
148
149 vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
150
151 vnc-tls.o: vnc-tls.c vnc.h
152
153 vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
154
155 vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
156
157 curses.o: curses.c keymaps.h curses_keys.h
158
159 bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
160
161 libqemu_common.a: $(obj-y)
162
163 ######################################################################
164
165 qemu-img.o: qemu-img-cmds.h
166
167 qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y)
168
169 qemu-nbd$(EXESUF):  qemu-nbd.o qemu-tool.o $(block-obj-y)
170
171 qemu-io$(EXESUF):  qemu-io.o qemu-tool.o cmd.o $(block-obj-y)
172
173 qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
174         $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@,"  GEN   $@")
175
176 check-qint: check-qint.o qint.o qemu-malloc.o
177 check-qstring: check-qstring.o qstring.o qemu-malloc.o
178 check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o
179
180 clean:
181 # avoid old build problems by removing potentially incorrect old files
182         rm -f config.mak config.h op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
183         rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
184         rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d
185         rm -f qemu-img-cmds.h
186         $(MAKE) -C tests clean
187         for d in $(ALL_SUBDIRS) libhw32 libhw64; do \
188         $(MAKE) -C $$d $@ || exit 1 ; \
189         done
190
191 distclean: clean
192         rm -f config-host.mak config-host.h config-host.ld $(DOCS) qemu-options.texi qemu-img-cmds.texi
193         rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
194         for d in $(TARGET_DIRS) libhw32 libhw64; do \
195         rm -rf $$d || exit 1 ; \
196         done
197
198 KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  modifiers  no  pt-br  sv \
199 ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
200 common  de-ch  es     fo  fr-ca  hu     ja  mk  nl-be      pt  sl     tr
201
202 ifdef INSTALL_BLOBS
203 BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
204 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
205 pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
206 bamboo.dtb petalogix-s3adsp1800.dtb \
207 multiboot.bin
208 else
209 BLOBS=
210 endif
211
212 install-doc: $(DOCS)
213         $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
214         $(INSTALL_DATA) qemu-doc.html  qemu-tech.html "$(DESTDIR)$(docdir)"
215 ifdef CONFIG_POSIX
216         $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
217         $(INSTALL_DATA) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
218         $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
219         $(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
220 endif
221
222 install: all $(if $(BUILD_DOCS),install-doc)
223         $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
224 ifneq ($(TOOLS),)
225         $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
226 endif
227 ifneq ($(BLOBS),)
228         $(INSTALL_DIR) "$(DESTDIR)$(datadir)"
229         set -e; for x in $(BLOBS); do \
230                 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
231         done
232 endif
233         $(INSTALL_DIR) "$(DESTDIR)$(datadir)/keymaps"
234         set -e; for x in $(KEYMAPS); do \
235                 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
236         done
237         for d in $(TARGET_DIRS); do \
238         $(MAKE) -C $$d $@ || exit 1 ; \
239         done
240
241 # various test targets
242 test speed: all
243         $(MAKE) -C tests $@
244
245 .PHONY: TAGS
246 TAGS:
247         find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
248
249 cscope:
250         rm -f ./cscope.*
251         find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
252         cscope -b
253
254 # documentation
255 %.html: %.texi
256         $(call quiet-command,texi2html -I=. -monolithic -number $<,"  GEN   $@")
257
258 %.info: %.texi
259         $(call quiet-command,makeinfo -I . $< -o $@,"  GEN   $@")
260
261 %.dvi: %.texi
262         $(call quiet-command,texi2dvi -I . $<,"  GEN   $@")
263
264 qemu-options.texi: $(SRC_PATH)/qemu-options.hx
265         $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
266
267 qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
268         $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
269
270 qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
271         $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@,"  GEN   $@")
272
273 qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
274         $(call quiet-command, \
275           perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu.pod && \
276           pod2man --section=1 --center=" " --release=" " qemu.pod > $@, \
277           "  GEN   $@")
278
279 qemu-img.1: qemu-img.texi qemu-img-cmds.texi
280         $(call quiet-command, \
281           perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-img.pod && \
282           pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@, \
283           "  GEN   $@")
284
285 qemu-nbd.8: qemu-nbd.texi
286         $(call quiet-command, \
287           perl -Ww -- $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod && \
288           pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
289           "  GEN   $@")
290
291 info: qemu-doc.info qemu-tech.info
292
293 dvi: qemu-doc.dvi qemu-tech.dvi
294
295 html: qemu-doc.html qemu-tech.html
296
297 qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-monitor.texi qemu-img-cmds.texi
298
299 VERSION ?= $(shell cat VERSION)
300 FILE = qemu-$(VERSION)
301
302 # tar release (use 'make -k tar' on a checkouted tree)
303 tar:
304         rm -rf /tmp/$(FILE)
305         cp -r . /tmp/$(FILE)
306         cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
307         rm -rf /tmp/$(FILE)
308
309 # generate a binary distribution
310 tarbin:
311         cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
312         $(bindir)/qemu \
313         $(bindir)/qemu-system-x86_64 \
314         $(bindir)/qemu-system-arm \
315         $(bindir)/qemu-system-cris \
316         $(bindir)/qemu-system-m68k \
317         $(bindir)/qemu-system-mips \
318         $(bindir)/qemu-system-mipsel \
319         $(bindir)/qemu-system-mips64 \
320         $(bindir)/qemu-system-mips64el \
321         $(bindir)/qemu-system-ppc \
322         $(bindir)/qemu-system-ppcemb \
323         $(bindir)/qemu-system-ppc64 \
324         $(bindir)/qemu-system-sh4 \
325         $(bindir)/qemu-system-sh4eb \
326         $(bindir)/qemu-system-sparc \
327         $(bindir)/qemu-i386 \
328         $(bindir)/qemu-x86_64 \
329         $(bindir)/qemu-alpha \
330         $(bindir)/qemu-arm \
331         $(bindir)/qemu-armeb \
332         $(bindir)/qemu-cris \
333         $(bindir)/qemu-m68k \
334         $(bindir)/qemu-mips \
335         $(bindir)/qemu-mipsel \
336         $(bindir)/qemu-ppc \
337         $(bindir)/qemu-ppc64 \
338         $(bindir)/qemu-ppc64abi32 \
339         $(bindir)/qemu-sh4 \
340         $(bindir)/qemu-sh4eb \
341         $(bindir)/qemu-sparc \
342         $(bindir)/qemu-sparc64 \
343         $(bindir)/qemu-sparc32plus \
344         $(bindir)/qemu-img \
345         $(bindir)/qemu-nbd \
346         $(datadir)/bios.bin \
347         $(datadir)/vgabios.bin \
348         $(datadir)/vgabios-cirrus.bin \
349         $(datadir)/ppc_rom.bin \
350         $(datadir)/video.x \
351         $(datadir)/openbios-sparc32 \
352         $(datadir)/openbios-sparc64 \
353         $(datadir)/openbios-ppc \
354         $(datadir)/pxe-ne2k_pci.bin \
355         $(datadir)/pxe-rtl8139.bin \
356         $(datadir)/pxe-pcnet.bin \
357         $(datadir)/pxe-e1000.bin \
358         $(docdir)/qemu-doc.html \
359         $(docdir)/qemu-tech.html \
360         $(mandir)/man1/qemu.1 \
361         $(mandir)/man1/qemu-img.1 \
362         $(mandir)/man8/qemu-nbd.8
363
364 # Include automatically generated dependency files
365 -include $(wildcard *.d audio/*.d slirp/*.d block/*.d)