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