]> git.proxmox.com Git - qemu.git/blame_incremental - Makefile
Remove useless check for config-host.mak
[qemu.git] / Makefile
... / ...
CommitLineData
1# Makefile for QEMU.
2
3ifneq ($(wildcard config-host.mak),)
4# Put the all: rule here so that config-host.mak can contain dependencies.
5all: build-all
6include config-host.mak
7include $(SRC_PATH)/rules.mak
8config-host.mak: configure
9 @echo $@ is out-of-date, running configure
10 @sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh
11else
12config-host.mak:
13 @echo "Please call configure before running make!"
14 @exit 1
15endif
16
17# Don't try to regenerate Makefile or configure
18# We don't generate any of them
19Makefile: ;
20configure: ;
21
22.PHONY: all clean cscope distclean dvi html info install install-doc \
23 recurse-all speed tar tarbin test build-all
24
25VPATH=$(SRC_PATH):$(SRC_PATH)/hw
26
27LIBS+=-lz $(LIBS_TOOLS)
28
29ifdef BUILD_DOCS
30DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
31else
32DOCS=
33endif
34
35SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory)
36
37build-all: config-host.h
38 $(call quiet-command, $(MAKE) $(SUBDIR_MAKEFLAGS) $(TOOLS) $(DOCS) recurse-all,)
39
40config-host.h: config-host.h-timestamp
41config-host.h-timestamp: config-host.mak
42
43SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
44
45subdir-%: 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
52libuser.a:
53 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C libuser V="$(V)" TARGET_DIR="$*/" all,)
54
55ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
56romsubdir-%:
57 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/",)
58
59ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
60
61recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
62
63#######################################################################
64# block-obj-y is code used by both qemu system emulation and qemu-img
65
66block-obj-y = cutils.o cache-utils.o qemu-malloc.o qemu-option.o module.o
67block-obj-y += nbd.o block.o aio.o aes.o osdep.o
68block-obj-$(CONFIG_POSIX) += posix-aio-compat.o
69block-obj-$(CONFIG_LINUX_AIO) += linux-aio.o
70
71block-nested-y += cow.o qcow.o vdi.o vmdk.o cloop.o dmg.o bochs.o vpc.o vvfat.o
72block-nested-y += qcow2.o qcow2-refcount.o qcow2-cluster.o qcow2-snapshot.o
73block-nested-y += parallels.o nbd.o
74block-nested-$(CONFIG_WIN32) += raw-win32.o
75block-nested-$(CONFIG_POSIX) += raw-posix.o
76block-nested-$(CONFIG_CURL) += curl.o
77
78block-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
86obj-y = $(block-obj-y)
87obj-y += readline.o console.o
88
89obj-y += tcg-runtime.o host-utils.o
90obj-y += irq.o ptimer.o ioport.o
91obj-y += i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
92obj-y += ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
93obj-y += tmp105.o lm832x.o eeprom93xx.o tsc2005.o
94obj-y += scsi-disk.o cdrom.o
95obj-y += scsi-generic.o scsi-bus.o
96obj-y += usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
97obj-y += usb-serial.o usb-net.o usb-bus.o
98obj-y += sd.o ssi-sd.o
99obj-y += bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
100obj-y += bt-hci-csr.o
101obj-y += buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
102obj-y += qemu-char.o aio.o net-checksum.o savevm.o
103obj-y += msmouse.o ps2.o
104obj-y += qdev.o qdev-properties.o ssi.o
105obj-y += qint.o qstring.o qdict.o qemu-config.o
106
107obj-$(CONFIG_BRLAPI) += baum.o
108obj-$(CONFIG_WIN32) += tap-win32.o
109obj-$(CONFIG_POSIX) += migration-exec.o migration-unix.o migration-fd.o
110
111audio/audio.o audio/fmodaudio.o: QEMU_CFLAGS += $(FMOD_CFLAGS)
112
113audio-obj-y = audio.o noaudio.o wavaudio.o mixeng.o
114audio-obj-$(CONFIG_SDL) += sdlaudio.o
115audio-obj-$(CONFIG_OSS) += ossaudio.o
116audio-obj-$(CONFIG_COREAUDIO) += coreaudio.o
117audio-obj-$(CONFIG_ALSA) += alsaaudio.o
118audio-obj-$(CONFIG_DSOUND) += dsoundaudio.o
119audio-obj-$(CONFIG_FMOD) += fmodaudio.o
120audio-obj-$(CONFIG_ESD) += esdaudio.o
121audio-obj-$(CONFIG_PA) += paaudio.o
122audio-obj-$(CONFIG_AUDIO_PT_INT) += audio_pt_int.o
123audio-obj-y += wavcapture.o
124obj-y += $(addprefix audio/, $(audio-obj-y))
125
126obj-y += keymaps.o
127obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o
128obj-$(CONFIG_CURSES) += curses.o
129obj-y += vnc.o acl.o d3des.o
130obj-$(CONFIG_VNC_TLS) += vnc-tls.o vnc-auth-vencrypt.o
131obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o
132obj-$(CONFIG_COCOA) += cocoa.o
133obj-$(CONFIG_IOTHREAD) += qemu-thread.o
134
135slirp-obj-y = cksum.o if.o ip_icmp.o ip_input.o ip_output.o
136slirp-obj-y += slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o
137slirp-obj-y += tcp_subr.o tcp_timer.o udp.o bootp.o tftp.o
138obj-$(CONFIG_SLIRP) += $(addprefix slirp/, $(slirp-obj-y))
139
140# xen backend driver support
141obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o
142obj-$(CONFIG_XEN) += xen_console.o xenfb.o xen_disk.o xen_nic.o
143
144QEMU_CFLAGS+=$(CURL_CFLAGS)
145
146cocoa.o: cocoa.m
147
148keymaps.o: keymaps.c keymaps.h
149
150sdl_zoom.o: sdl_zoom.c sdl_zoom.h sdl_zoom_template.h
151
152sdl.o: sdl.c keymaps.h sdl_keysym.h sdl_zoom.h
153
154sdl.o audio/sdlaudio.o sdl_zoom.o baum.o: QEMU_CFLAGS += $(SDL_CFLAGS)
155
156acl.o: acl.h acl.c
157
158vnc.h: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
159
160vnc.o: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h acl.h
161
162vnc.o: QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
163
164vnc-tls.o: vnc-tls.c vnc.h
165
166vnc-auth-vencrypt.o: vnc-auth-vencrypt.c vnc.h
167
168vnc-auth-sasl.o: vnc-auth-sasl.c vnc.h
169
170curses.o: curses.c keymaps.h curses_keys.h
171
172bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
173
174libqemu_common.a: $(obj-y)
175
176######################################################################
177
178qemu-img.o: qemu-img-cmds.h
179
180qemu-img$(EXESUF): qemu-img.o qemu-tool.o $(block-obj-y)
181
182qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o $(block-obj-y)
183
184qemu-io$(EXESUF): qemu-io.o qemu-tool.o cmd.o $(block-obj-y)
185
186qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx
187 $(call quiet-command,sh $(SRC_PATH)/hxtool -h < $< > $@," GEN $@")
188
189check-qint: check-qint.o qint.o qemu-malloc.o
190check-qstring: check-qstring.o qstring.o qemu-malloc.o
191check-qdict: check-qdict.o qdict.o qint.o qstring.o qemu-malloc.o
192
193clean:
194# avoid old build problems by removing potentially incorrect old files
195 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
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
204distclean: 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
211KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
212ar de en-us fi fr-be hr it lv nl pl ru th \
213common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
214
215ifdef INSTALL_BLOBS
216BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
217video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
218pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
219bamboo.dtb petalogix-s3adsp1800.dtb \
220multiboot.bin
221else
222BLOBS=
223endif
224
225install-doc: $(DOCS)
226 $(INSTALL_DIR) "$(DESTDIR)$(docdir)"
227 $(INSTALL_DATA) qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
228ifdef 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"
233endif
234
235install: all $(if $(BUILD_DOCS),install-doc)
236 $(INSTALL_DIR) "$(DESTDIR)$(bindir)"
237ifneq ($(TOOLS),)
238 $(INSTALL_PROG) $(STRIP_OPT) $(TOOLS) "$(DESTDIR)$(bindir)"
239endif
240ifneq ($(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
245endif
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
255test speed: all
256 $(MAKE) -C tests $@
257
258.PHONY: TAGS
259TAGS:
260 find "$(SRC_PATH)" -name '*.[hc]' -print0 | xargs -0 etags
261
262cscope:
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
277qemu-options.texi: $(SRC_PATH)/qemu-options.hx
278 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
279
280qemu-monitor.texi: $(SRC_PATH)/qemu-monitor.hx
281 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
282
283qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx
284 $(call quiet-command,sh $(SRC_PATH)/hxtool -t < $< > $@," GEN $@")
285
286qemu.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
292qemu-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
298qemu-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
304info: qemu-doc.info qemu-tech.info
305
306dvi: qemu-doc.dvi qemu-tech.dvi
307
308html: qemu-doc.html qemu-tech.html
309
310qemu-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
312VERSION ?= $(shell cat VERSION)
313FILE = qemu-$(VERSION)
314
315# tar release (use 'make -k tar' on a checkouted tree)
316tar:
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
323tarbin:
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)