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
13 BASE_CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS)
14 BASE_LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS)
16 CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP
17 CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
20 BASE_LDFLAGS += -static
23 DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1
30 all: $(TOOLS) $(DOCS) recurse-all
32 subdir-%: dyngen$(EXESUF) libqemu_common.a
33 $(MAKE) -C $(subst subdir-,,$@) all
35 recurse-all: $(patsubst %,subdir-%, $(TARGET_DIRS))
37 #######################################################################
38 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
41 BLOCK_OBJS+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
42 BLOCK_OBJS+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
43 BLOCK_OBJS+=block-qcow2.o block-parallels.o
45 ######################################################################
46 # libqemu_common.a: Target indepedent part of system emulation. The
47 # long term path is to suppress *all* target specific code in case of
48 # system emulation, i.e. a single QEMU executable should support all
52 OBJS+=readline.o console.o
56 OBJS+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
57 OBJS+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o
58 OBJS+=scsi-disk.o cdrom.o
59 OBJS+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o
66 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o
68 AUDIO_OBJS += sdlaudio.o
71 AUDIO_OBJS += ossaudio.o
73 ifdef CONFIG_COREAUDIO
74 AUDIO_OBJS += coreaudio.o
77 AUDIO_OBJS += alsaaudio.o
80 AUDIO_OBJS += dsoundaudio.o
83 AUDIO_OBJS += fmodaudio.o
84 audio/audio.o audio/fmodaudio.o: CPPFLAGS := -I$(CONFIG_FMOD_INC) $(CPPFLAGS)
86 AUDIO_OBJS+= wavcapture.o
87 OBJS+=$(addprefix audio/, $(AUDIO_OBJS))
90 OBJS+=sdl.o x_keymap.o
99 CPPFLAGS+=-I$(SRC_PATH)/slirp
100 SLIRP_OBJS=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
101 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
102 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
103 OBJS+=$(addprefix slirp/, $(SLIRP_OBJS))
107 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
109 sdl.o: sdl.c keymaps.c sdl_keysym.h
110 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
112 vnc.o: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
113 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) $(CONFIG_VNC_TLS_CFLAGS) -c -o $@ $<
115 audio/sdlaudio.o: audio/sdlaudio.c
116 $(CC) $(CFLAGS) $(CPPFLAGS) $(SDL_CFLAGS) $(BASE_CFLAGS) -c -o $@ $<
118 libqemu_common.a: $(OBJS)
122 QEMU_IMG_BLOCK_OBJS = $(BLOCK_OBJS)
124 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-win32.o
126 QEMU_IMG_BLOCK_OBJS += qemu-img-block-raw-posix.o
129 ######################################################################
131 qemu-img$(EXESUF): qemu-img.o qemu-img-block.o $(QEMU_IMG_BLOCK_OBJS)
132 $(CC) $(LDFLAGS) $(BASE_LDFLAGS) -o $@ $^ -lz $(LIBS)
135 $(CC) $(CFLAGS) $(CPPFLAGS) -DQEMU_IMG $(BASE_CFLAGS) -c -o $@ $<
138 $(CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -c -o $@ $<
141 dyngen$(EXESUF): dyngen.c
142 $(HOST_CC) $(CFLAGS) $(CPPFLAGS) $(BASE_CFLAGS) -o $@ $^
145 # avoid old build problems by removing potentially incorrect old files
146 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
147 rm -f *.o *.d *.a $(TOOLS) dyngen$(EXESUF) TAGS cscope.* *.pod *~ */*~
148 rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d
149 $(MAKE) -C tests clean
150 for d in $(TARGET_DIRS); do \
151 $(MAKE) -C $$d $@ || exit 1 ; \
155 rm -f config-host.mak config-host.h $(DOCS)
156 rm -f qemu-{doc,tech}.{info,aux,cp,dvi,fn,info,ky,log,pg,toc,tp,vr}
157 for d in $(TARGET_DIRS); do \
158 rm -rf $$d || exit 1 ; \
161 KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
162 ar de en-us fi fr-be hr it lv nl pl ru th \
163 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
166 mkdir -p "$(DESTDIR)$(docdir)"
167 $(INSTALL) -m 644 qemu-doc.html qemu-tech.html "$(DESTDIR)$(docdir)"
169 mkdir -p "$(DESTDIR)$(mandir)/man1"
170 $(INSTALL) qemu.1 qemu-img.1 "$(DESTDIR)$(mandir)/man1"
173 install: all $(if $(BUILD_DOCS),install-doc)
174 mkdir -p "$(DESTDIR)$(bindir)"
176 $(INSTALL) -m 755 -s $(TOOLS) "$(DESTDIR)$(bindir)"
178 mkdir -p "$(DESTDIR)$(datadir)"
179 for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
180 video.x openbios-sparc32 pxe-ne2k_pci.bin \
181 pxe-rtl8139.bin pxe-pcnet.bin; do \
182 $(INSTALL) -m 644 $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
185 mkdir -p "$(DESTDIR)$(datadir)/keymaps"
186 for x in $(KEYMAPS); do \
187 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \
190 for d in $(TARGET_DIRS); do \
191 $(MAKE) -C $$d $@ || exit 1 ; \
194 # various test targets
199 etags *.[ch] tests/*.[ch]
203 find . -name "*.[ch]" -print > ./cscope.files
208 texi2html -monolithic -number $<
216 qemu.1: qemu-doc.texi
217 $(SRC_PATH)/texi2pod.pl $< qemu.pod
218 pod2man --section=1 --center=" " --release=" " qemu.pod > $@
220 qemu-img.1: qemu-img.texi
221 $(SRC_PATH)/texi2pod.pl $< qemu-img.pod
222 pod2man --section=1 --center=" " --release=" " qemu-img.pod > $@
224 info: qemu-doc.info qemu-tech.info
226 dvi: qemu-doc.dvi qemu-tech.dvi
228 html: qemu-doc.html qemu-tech.html
230 VERSION ?= $(shell cat VERSION)
231 FILE = qemu-$(VERSION)
233 # tar release (use 'make -k tar' on a checkouted tree)
237 ( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
240 # generate a binary distribution
242 ( cd / ; tar zcvf ~/qemu-$(VERSION)-$(ARCH).tar.gz \
244 $(bindir)/qemu-system-ppc \
245 $(bindir)/qemu-system-ppc64 \
246 $(bindir)/qemu-system-ppcemb \
247 $(bindir)/qemu-system-sparc \
248 $(bindir)/qemu-system-x86_64 \
249 $(bindir)/qemu-system-mips \
250 $(bindir)/qemu-system-mipsel \
251 $(bindir)/qemu-system-mips64 \
252 $(bindir)/qemu-system-mips64el \
253 $(bindir)/qemu-system-arm \
254 $(bindir)/qemu-system-m68k \
255 $(bindir)/qemu-system-sh4 \
256 $(bindir)/qemu-system-sh4eb \
257 $(bindir)/qemu-i386 \
259 $(bindir)/qemu-armeb \
260 $(bindir)/qemu-sparc \
262 $(bindir)/qemu-ppc64 \
263 $(bindir)/qemu-mips \
264 $(bindir)/qemu-mipsel \
265 $(bindir)/qemu-mipsn32 \
266 $(bindir)/qemu-mipsn32el \
267 $(bindir)/qemu-mips64 \
268 $(bindir)/qemu-mips64el \
269 $(bindir)/qemu-alpha \
270 $(bindir)/qemu-m68k \
272 $(bindir)/qemu-sh4eb \
274 $(datadir)/bios.bin \
275 $(datadir)/vgabios.bin \
276 $(datadir)/vgabios-cirrus.bin \
277 $(datadir)/ppc_rom.bin \
279 $(datadir)/openbios-sparc32 \
280 $(datadir)/pxe-ne2k_pci.bin \
281 $(datadir)/pxe-rtl8139.bin \
282 $(datadir)/pxe-pcnet.bin \
283 $(docdir)/qemu-doc.html \
284 $(docdir)/qemu-tech.html \
285 $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 )
287 ifneq ($(wildcard .depend),)
291 # Include automatically generated dependency files
292 -include $(wildcard *.d audio/*.d slirp/*.d)