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