3 include config-host.mak
5 .PHONY: all clean cscope distclean dvi html info install install-doc \
6 recurse-all speed tar tarbin test
8 VPATH=$(SRC_PATH):$(SRC_PATH)/hw
10 CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
11 LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
13 CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@
14 CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
20 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 qemu-nbd.8
28 LIBS+=-lsocket -lnsl -lresolv
32 LIBS+=-lwinmm -lws2_32 -liphlpapi
35 all: $(TOOLS) $(DOCS) recurse-all
37 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
40 $(MAKE) -C $(subst subdir-,,$@) all
42 $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
43 $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
45 recurse-all: $(SUBDIR_RULES)
47 #######################################################################
48 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
50 BLOCK_OBJS=cutils.o qemu-malloc.o
51 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
52 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
53 BLOCK_OBJS+=block-qcow2.o block-parallels.o block-nbd.o
54 BLOCK_OBJS+=nbd.o block.o aio.o
57 BLOCK_OBJS += block-raw-win32.o
60 BLOCK_OBJS += posix-aio-compat.o
62 BLOCK_OBJS += block-raw-posix.o
65 ######################################################################
66 # libqemu_common.a: Target independent part of system emulation. The
67 # long term path is to suppress *all* target specific code in case of
68 # system emulation, i.e. a single QEMU executable should support all
72 OBJS+=readline.o console.o
75 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
76 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
77 OBJS+=tmp105.o lm832x.o
78 OBJS+=scsi-disk.o cdrom.o
80 OBJS+=usb.o usb-hub.o usb-$(HOST_USB).o usb-hid.o usb-msd.o usb-wacom.o
81 OBJS+=usb-serial.o usb-net.o
83 OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
84 OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
85 OBJS+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
95 OBJS+=migration-exec.o
98 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
100 AUDIO_OBJS += sdlaudio.o
103 AUDIO_OBJS += ossaudio.o
105 ifdef CONFIG_COREAUDIO
106 AUDIO_OBJS += coreaudio.o
110 AUDIO_OBJS += alsaaudio.o
113 AUDIO_OBJS += dsoundaudio.o
116 AUDIO_OBJS += fmodaudio.o
117 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
122 AUDIO_OBJS += esdaudio.o
127 AUDIO_OBJS += paaudio.o
133 AUDIO_OBJS += audio_pt_int.o
135 AUDIO_OBJS+= wavcapture.o
136 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
139 OBJS+=sdl.o x_keymap.o
151 CPPFLAGS+=-I$(SRC_PATH)/slirp
152 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
153 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
154 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
155 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
161 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
163 sdl.o: sdl.c keymaps.c sdl_keysym.h
164 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
166 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
167 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
169 curses.o: curses.c keymaps.c curses_keys.h
170 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
173 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_BLUEZ_CFLAGS) -c -o $@ $<
175 audio/sdlaudio.o: audio/sdlaudio.c
176 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
178 libqemu_common.a: $(OBJS)
182 #######################################################################
183 # USER_OBJS is code used by qemu userspace emulation
184 USER_OBJS=cutils.o cache-utils.o
186 libqemu_user.a: $(USER_OBJS)
188 $(AR) rcs $@ $(USER_OBJS)
190 ######################################################################
192 qemu-img$(EXESUF): qemu-img.o qemu-tool.o osdep.o $(BLOCK_OBJS)
193 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
196 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
198 qemu-nbd$(EXESUF): qemu-nbd.o qemu-tool.o osdep.o $(BLOCK_OBJS)
199 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
202 # avoid old build problems by removing potentially incorrect old files
203 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
204 rm -f *.o *.d *.a $(TOOLS) TAGS cscope.* *.pod *~ */*~
205 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
206 $(MAKE) -C tests clean
207 for d in $(TARGET_DIRS); do \
208 $(MAKE) -C $$d $@ || exit 1 ; \
212 rm -f config-host.mak config-host.h $(DOCS)
213 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
214 for d in $(TARGET_DIRS); do \
215 rm -rf $$d || exit 1 ; \
218 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
219 ar de en-us fi fr-be hr it lv nl pl ru th \
220 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
223 BLOBS=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
224 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
225 pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin bamboo.dtb
231 mkdir -p "$(DESTDIR)$(docdir)"
232 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
234 mkdir -p "$(DESTDIR)$(mandir)/man1"
235 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
236 mkdir -p "$(DESTDIR)$(mandir)/man8"
237 $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
240 install: all $(if $(BUILD_DOCS),install-doc)
241 mkdir -p "$(DESTDIR)$(bindir)"
243 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
246 mkdir -p "$(DESTDIR)$(datadir)"
247 set -e; for x in $(BLOBS); do \
248 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
252 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
253 set -e; for x in $(KEYMAPS); do \
254 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
257 for d in $(TARGET_DIRS); do \
258 $(MAKE) -C $$d $@ || exit 1 ; \
261 # various test targets
266 etags *.[ch] tests/*.[ch]
270 find . -name "*.[ch]" -print | sed 's,^\./,,' > ./cscope.files
275 texi2html -monolithic -number $<
283 qemu.1: qemu-doc.texi
284 $(SRC_PATH)/texi2pod.pl $< qemu.pod
285 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
287 qemu-img.1: qemu-img.texi
288 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
289 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
291 qemu-nbd.8: qemu-nbd.texi
292 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
293 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
295 info: qemu-doc.info qemu-tech.info
297 dvi: qemu-doc.dvi qemu-tech.dvi
299 html: qemu-doc.html qemu-tech.html
301 qemu-doc.dvi qemu-doc.html qemu-doc.info: qemu-img.texi qemu-nbd.texi
303 VERSION ?= $(shell cat VERSION)
304 FILE = qemu-$(VERSION)
306 # tar release (use 'make -k tar' on a checkouted tree)
310 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
313 # generate a binary distribution
315 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
317 $(bindir)/qemu-system-ppc \
318 $(bindir)/qemu-system-ppc64 \
319 $(bindir)/qemu-system-ppcemb \
320 $(bindir)/qemu-system-sparc \
321 $(bindir)/qemu-system-x86_64 \
322 $(bindir)/qemu-system-mips \
323 $(bindir)/qemu-system-mipsel \
324 $(bindir)/qemu-system-mips64 \
325 $(bindir)/qemu-system-mips64el \
326 $(bindir)/qemu-system-arm \
327 $(bindir)/qemu-system-m68k \
328 $(bindir)/qemu-system-sh4 \
329 $(bindir)/qemu-system-sh4eb \
330 $(bindir)/qemu-system-cris \
331 $(bindir)/qemu-i386 \
332 $(bindir)/qemu-x86_64 \
334 $(bindir)/qemu-armeb \
335 $(bindir)/qemu-sparc \
336 $(bindir)/qemu-sparc32plus \
337 $(bindir)/qemu-sparc64 \
339 $(bindir)/qemu-ppc64 \
340 $(bindir)/qemu-ppc64abi32 \
341 $(bindir)/qemu-mips \
342 $(bindir)/qemu-mipsel \
343 $(bindir)/qemu-alpha \
344 $(bindir)/qemu-m68k \
346 $(bindir)/qemu-sh4eb \
347 $(bindir)/qemu-cris \
350 $(datadir)/bios.bin \
351 $(datadir)/vgabios.bin \
352 $(datadir)/vgabios-cirrus.bin \
353 $(datadir)/ppc_rom.bin \
355 $(datadir)/openbios-sparc32 \
356 $(datadir)/openbios-sparc64 \
357 $(datadir)/pxe-ne2k_pci.bin \
358 $(datadir)/pxe-rtl8139.bin \
359 $(datadir)/pxe-pcnet.bin \
360 $(datadir)/pxe-e1000.bin \
361 $(docdir)/qemu-doc.html \
362 $(docdir)/qemu-tech.html \
363 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
364 $(mandir)/man8/qemu-nbd.8
366 # Include automatically generated dependency files
367 -include $(wildcard *.d audio/*.d slirp/*.d)