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