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
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
27 all: $(TOOLS) $(DOCS) recurse-all
29 subdir-%: dyngen$(EXESUF) libqemu_common.a
30 $(MAKE) -C $(subst subdir-,,$@) all
32 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
34 #######################################################################
35 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
38 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
39 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
40 BLOCK_OBJS+=block-qcow2.o block-parallels.o
42 ######################################################################
43 # libqemu_common.a: Target independent part of system emulation. The
44 # long term path is to suppress *all* target specific code in case of
45 # system emulation, i.e. a single QEMU executable should support all
49 OBJS+=readline.o console.o
53 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
54 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
55 OBJS+=scsi-disk.o cdrom.o
57 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
64 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
66 AUDIO_OBJS += sdlaudio.o
69 AUDIO_OBJS += ossaudio.o
71 ifdef CONFIG_COREAUDIO
72 AUDIO_OBJS += coreaudio.o
76 AUDIO_OBJS += alsaaudio.o
79 AUDIO_OBJS += dsoundaudio.o
82 AUDIO_OBJS += fmodaudio.o
83 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
88 AUDIO_OBJS += esdaudio.o
94 AUDIO_OBJS += audio_pt_int.o
96 AUDIO_OBJS+= wavcapture.o
97 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
100 OBJS+=sdl.o x_keymap.o
112 CPPFLAGS+=-I$(SRC_PATH)/slirp
113 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
114 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
115 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
116 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
120 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
122 sdl.o: sdl.c keymaps.c sdl_keysym.h
123 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
125 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
126 $(CC) $(CFLAGS) $(CPPFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
128 curses.o: curses.c keymaps.c curses_keys.h
129 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
131 audio/sdlaudio.o: audio/sdlaudio.c
132 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) -c -o $@ $<
134 libqemu_common.a: $(OBJS)
138 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
140 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
142 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
145 ######################################################################
147 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
148 $(CC) $(LDFLAGS) -o $@ $^ -lz $(LIBS)
151 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG -c -o $@ $<
154 $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
157 dyngen$(EXESUF): dyngen.c
158 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
161 # avoid old build problems by removing potentially incorrect old files
162 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
163 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
165 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
166 $(MAKE) -C tests clean
167 for d in $(TARGET_DIRS); do \
168 $(MAKE) -C $$d $@ || exit 1 ; \
172 rm -f config-host.mak config-host.h $(DOCS)
173 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
174 for d in $(TARGET_DIRS); do \
175 rm -rf $$d || exit 1 ; \
178 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
179 ar de en-us fi fr-be hr it lv nl pl ru th \
180 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
183 mkdir -p "$(DESTDIR)$(docdir)"
184 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
186 mkdir -p "$(DESTDIR)$(mandir)/man1"
187 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
190 install: all $(if $(BUILD_DOCS),install-doc)
191 mkdir -p "$(DESTDIR)$(bindir)"
193 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
195 mkdir -p "$(DESTDIR)$(datadir)"
196 set -e; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
197 video.x openbios-sparc32 pxe-ne2k_pci.bin \
198 pxe-rtl8139.bin pxe-pcnet.bin; do \
199 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
202 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
203 set -e; for x in $(KEYMAPS); do \
204 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
207 for d in $(TARGET_DIRS); do \
208 $(MAKE) -C $$d $@ || exit 1 ; \
211 # various test targets
216 etags *.[ch] tests/*.[ch]
220 find . -name "*.[ch]" -print > ./cscope.files
225 texi2html -monolithic -number $<
233 qemu.1: qemu-doc.texi
234 $(SRC_PATH)/texi2pod.pl $< qemu.pod
235 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
237 qemu-img.1: qemu-img.texi
238 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
239 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
241 info: qemu-doc.info qemu-tech.info
243 dvi: qemu-doc.dvi qemu-tech.dvi
245 html: qemu-doc.html qemu-tech.html
247 VERSION ?= $(shell cat VERSION)
248 FILE = qemu-$(VERSION)
250 # tar release (use 'make -k tar' on a checkouted tree)
254 cd /tmp && tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS
257 # generate a binary distribution
259 cd / && tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
261 $(bindir)/qemu-system-ppc \
262 $(bindir)/qemu-system-ppc64 \
263 $(bindir)/qemu-system-ppcemb \
264 $(bindir)/qemu-system-sparc \
265 $(bindir)/qemu-system-x86_64 \
266 $(bindir)/qemu-system-mips \
267 $(bindir)/qemu-system-mipsel \
268 $(bindir)/qemu-system-mips64 \
269 $(bindir)/qemu-system-mips64el \
270 $(bindir)/qemu-system-arm \
271 $(bindir)/qemu-system-m68k \
272 $(bindir)/qemu-system-sh4 \
273 $(bindir)/qemu-system-sh4eb \
274 $(bindir)/qemu-system-cris \
275 $(bindir)/qemu-i386 \
276 $(bindir)/qemu-x86_64 \
278 $(bindir)/qemu-armeb \
279 $(bindir)/qemu-sparc \
280 $(bindir)/qemu-sparc32plus \
281 $(bindir)/qemu-sparc64 \
283 $(bindir)/qemu-ppc64 \
284 $(bindir)/qemu-ppc64abi32 \
285 $(bindir)/qemu-mips \
286 $(bindir)/qemu-mipsel \
287 $(bindir)/qemu-alpha \
288 $(bindir)/qemu-m68k \
290 $(bindir)/qemu-sh4eb \
291 $(bindir)/qemu-cris \
293 $(datadir)/bios.bin \
294 $(datadir)/vgabios.bin \
295 $(datadir)/vgabios-cirrus.bin \
296 $(datadir)/ppc_rom.bin \
298 $(datadir)/openbios-sparc32 \
299 $(datadir)/pxe-ne2k_pci.bin \
300 $(datadir)/pxe-rtl8139.bin \
301 $(datadir)/pxe-pcnet.bin \
302 $(docdir)/qemu-doc.html \
303 $(docdir)/qemu-tech.html \
304 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1
306 # Include automatically generated dependency files
307 -include $(wildcard *.d audio/*.d slirp/*.d)