3 include config-host.mak
5 .PHONY: all clean distclean dvi info install install-doc tar tarbin \
6 speed test html dvi info
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
31 all: $(TOOLS) $(DOCS) recurse-all
33 SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
35 subdir-%: dyngen$(EXESUF)
36 $(MAKE) -C $(subst subdir-,,$@) all
38 $(filter %-softmmu,$(SUBDIR_RULES)): libqemu_common.a
39 $(filter %-user,$(SUBDIR_RULES)): libqemu_user.a
41 recurse-all: $(SUBDIR_RULES)
43 #######################################################################
44 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
46 BLOCK_OBJS=cutils.o qemu-malloc.o
47 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
48 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
49 BLOCK_OBJS+=block-qcow2.o block-parallels.o
51 BLOCK_OBJS+=block-nbd.o
54 ######################################################################
55 # libqemu_common.a: Target independent part of system emulation. The
56 # long term path is to suppress *all* target specific code in case of
57 # system emulation, i.e. a single QEMU executable should support all
61 OBJS+=readline.o console.o
69 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
70 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
71 OBJS+=tmp105.o lm832x.o
72 OBJS+=scsi-disk.o cdrom.o
74 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
75 OBJS+=usb-serial.o usb-net.o
87 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
89 AUDIO_OBJS += sdlaudio.o
92 AUDIO_OBJS += ossaudio.o
94 ifdef CONFIG_COREAUDIO
95 AUDIO_OBJS += coreaudio.o
99 AUDIO_OBJS += alsaaudio.o
102 AUDIO_OBJS += dsoundaudio.o
105 AUDIO_OBJS += fmodaudio.o
106 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
111 AUDIO_OBJS += esdaudio.o
116 AUDIO_OBJS += paaudio.o
122 AUDIO_OBJS += audio_pt_int.o
124 AUDIO_OBJS+= wavcapture.o
125 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
128 OBJS+=sdl.o x_keymap.o
140 CPPFLAGS+=-I$(SRC_PATH)/slirp
141 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
142 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
143 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
144 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
150 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
152 sdl.o: sdl.c keymaps.c sdl_keysym.h
153 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
155 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
156 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
158 curses.o: curses.c keymaps.c curses_keys.h
159 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
161 audio/sdlaudio.o: audio/sdlaudio.c
162 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
164 libqemu_common.a: $(OBJS)
168 #######################################################################
169 # USER_OBJS is code used by qemu userspace emulation
172 libqemu_user.a: $(USER_OBJS)
174 $(AR) rcs $@ $(USER_OBJS)
176 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
178 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
180 QEMU_IMG_BLOCK_OBJS += nbd.o qemu-img-block-raw-posix.o
183 ######################################################################
185 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
186 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
189 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
192 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
195 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_NBD -c -o $@ $<
197 qemu-nbd$(EXESUF): qemu-nbd.o qemu-nbd-nbd.o qemu-img-block.o \
198 osdep.o qemu-nbd-block-raw-posix.o $(BLOCK_OBJS)
199 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
202 dyngen$(EXESUF): dyngen.c
203 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
206 # avoid old build problems by removing potentially incorrect old files
207 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
208 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
210 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
211 $(MAKE) -C tests clean
212 for d in $(TARGET_DIRS); do \
213 $(MAKE) -C $$d $@ || exit 1 ; \
217 rm -f config-host.mak config-host.h $(DOCS)
218 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
219 for d in $(TARGET_DIRS); do \
220 rm -rf $$d || exit 1 ; \
223 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
224 ar de en-us fi fr-be hr it lv nl pl ru th \
225 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
228 mkdir -p "$(DESTDIR)$(docdir)"
229 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
231 mkdir -p "$(DESTDIR)$(mandir)/man1"
232 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
233 mkdir -p "$(DESTDIR)$(mandir)/man8"
234 $(INSTALL) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
237 install: all $(if $(BUILD_DOCS),install-doc)
238 mkdir -p "$(DESTDIR)$(bindir)"
240 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
242 mkdir -p "$(DESTDIR)$(datadir)"
243 set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
244 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
245 pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin; do \
246 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
249 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
250 set -e; for x in $(KEYMAPS); do \
251 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
254 for d in $(TARGET_DIRS); do \
255 $(MAKE) -C $$d $@ || exit 1 ; \
258 # various test targets
263 etags *.[ch] tests/*.[ch]
267 find . -name "*.[ch]" -print > ./cscope.files
272 texi2html -monolithic -number $<
280 qemu.1: qemu-doc.texi
281 $(SRC_PATH)/texi2pod.pl $< qemu.pod
282 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
284 qemu-img.1: qemu-img.texi
285 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
286 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
288 qemu-nbd.8: qemu-nbd.texi
289 $(SRC_PATH)/texi2pod.pl $< qemu-nbd.pod
290 pod2man --section=8 --center=" " --release=" " qemu-nbd.pod > $@
292 info: qemu-doc.info qemu-tech.info
294 dvi: qemu-doc.dvi qemu-tech.dvi
296 html: qemu-doc.html qemu-tech.html
298 VERSION ?= $(shell cat VERSION)
299 FILE = qemu-$(VERSION)
301 # tar release (use 'make -k tar' on a checkouted tree)
305 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS --exclude .git --exclude .svn
308 # generate a binary distribution
310 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
312 $(bindir)/qemu-system-ppc \
313 $(bindir)/qemu-system-ppc64 \
314 $(bindir)/qemu-system-ppcemb \
315 $(bindir)/qemu-system-sparc \
316 $(bindir)/qemu-system-x86_64 \
317 $(bindir)/qemu-system-mips \
318 $(bindir)/qemu-system-mipsel \
319 $(bindir)/qemu-system-mips64 \
320 $(bindir)/qemu-system-mips64el \
321 $(bindir)/qemu-system-arm \
322 $(bindir)/qemu-system-m68k \
323 $(bindir)/qemu-system-sh4 \
324 $(bindir)/qemu-system-sh4eb \
325 $(bindir)/qemu-system-cris \
326 $(bindir)/qemu-i386 \
327 $(bindir)/qemu-x86_64 \
329 $(bindir)/qemu-armeb \
330 $(bindir)/qemu-sparc \
331 $(bindir)/qemu-sparc32plus \
332 $(bindir)/qemu-sparc64 \
334 $(bindir)/qemu-ppc64 \
335 $(bindir)/qemu-ppc64abi32 \
336 $(bindir)/qemu-mips \
337 $(bindir)/qemu-mipsel \
338 $(bindir)/qemu-alpha \
339 $(bindir)/qemu-m68k \
341 $(bindir)/qemu-sh4eb \
342 $(bindir)/qemu-cris \
345 $(datadir)/bios.bin \
346 $(datadir)/vgabios.bin \
347 $(datadir)/vgabios-cirrus.bin \
348 $(datadir)/ppc_rom.bin \
350 $(datadir)/openbios-sparc32 \
351 $(datadir)/openbios-sparc64 \
352 $(datadir)/pxe-ne2k_pci.bin \
353 $(datadir)/pxe-rtl8139.bin \
354 $(datadir)/pxe-pcnet.bin \
355 $(datadir)/pxe-e1000.bin \
356 $(docdir)/qemu-doc.html \
357 $(docdir)/qemu-tech.html \
358 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
359 $(mandir)/man8/qemu-nbd.8
361 # Include automatically generated dependency files
362 -include $(wildcard *.d audio/*.d slirp/*.d)