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