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