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