3 include config-host.mak
4 include $(SRC_PATH
)/rules.mak
6 .PHONY
: all clean cscope
distclean dvi html
info install install-doc \
7 recurse-all speed
tar tarbin
test
9 VPATH
=$(SRC_PATH
):$(SRC_PATH
)/hw
12 CFLAGS
+= $(OS_CFLAGS
) $(ARCH_CFLAGS
)
13 LDFLAGS
+= $(OS_LDFLAGS
) $(ARCH_LDFLAGS
)
15 CPPFLAGS
+= -I.
-I
$(SRC_PATH
) -MMD
-MP
-MT
$@
16 CPPFLAGS
+= -D_GNU_SOURCE
-D_FILE_OFFSET_BITS
=64 -D_LARGEFILE_SOURCE
22 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1 qemu-nbd
.8
30 LIBS
+=-lsocket
-lnsl
-lresolv
34 LIBS
+=-lwinmm
-lws2_32
-liphlpapi
37 all: $(TOOLS
) $(DOCS
) recurse-all
39 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
42 $(call quiet-command
,$(MAKE
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
44 $(filter %-softmmu
,$(SUBDIR_RULES
)): libqemu_common.a
45 $(filter %-user
,$(SUBDIR_RULES
)): libqemu_user.a
47 recurse-all
: $(SUBDIR_RULES
)
49 #######################################################################
50 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
52 BLOCK_OBJS
=cutils.o qemu-malloc.o
53 BLOCK_OBJS
+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
54 BLOCK_OBJS
+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
55 BLOCK_OBJS
+=block-qcow2.o block-parallels.o block-nbd.o
56 BLOCK_OBJS
+=nbd.o block.o aio.o
59 BLOCK_OBJS
+= block-raw-win32.o
62 BLOCK_OBJS
+= posix-aio-compat.o
64 BLOCK_OBJS
+= block-raw-posix.o
67 ######################################################################
68 # libqemu_common.a: Target independent part of system emulation. The
69 # long term path is to suppress *all* target specific code in case of
70 # system emulation, i.e. a single QEMU executable should support all
74 OBJS
+=readline.o console.o
77 OBJS
+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
78 OBJS
+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
79 OBJS
+=tmp105.o lm832x.o
80 OBJS
+=scsi-disk.o cdrom.o
82 OBJS
+=usb.o usb-hub.o usb-
$(HOST_USB
).o usb-hid.o usb-msd.o usb-wacom.o
83 OBJS
+=usb-serial.o usb-net.o
85 OBJS
+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
86 OBJS
+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
87 OBJS
+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
97 OBJS
+=migration-exec.o
100 AUDIO_OBJS
= audio.o noaudio.o wavaudio.o mixeng.o
102 AUDIO_OBJS
+= sdlaudio.o
105 AUDIO_OBJS
+= ossaudio.o
107 ifdef CONFIG_COREAUDIO
108 AUDIO_OBJS
+= coreaudio.o
112 AUDIO_OBJS
+= alsaaudio.o
115 AUDIO_OBJS
+= dsoundaudio.o
118 AUDIO_OBJS
+= fmodaudio.o
119 audio
/audio.o audio
/fmodaudio.o
: CPPFLAGS
:= -I
$(CONFIG_FMOD_INC
) $(CPPFLAGS
)
124 AUDIO_OBJS
+= esdaudio.o
129 AUDIO_OBJS
+= paaudio.o
135 AUDIO_OBJS
+= audio_pt_int.o
137 AUDIO_OBJS
+= wavcapture.o
138 OBJS
+=$(addprefix audio
/, $(AUDIO_OBJS
))
142 OBJS
+=sdl.o x_keymap.o
149 OBJS
+=vnc-tls.o vnc-auth-vencrypt.o
151 ifdef CONFIG_VNC_SASL
152 OBJS
+=vnc-auth-sasl.o
160 CPPFLAGS
+=-I
$(SRC_PATH
)/slirp
161 SLIRP_OBJS
=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
162 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
163 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
164 OBJS
+=$(addprefix slirp
/, $(SLIRP_OBJS
))
171 keymaps.o
: keymaps.c keymaps.h
173 sdl.o
: sdl.c keymaps.h sdl_keysym.h
175 sdl.o audio
/sdlaudio.o
: CFLAGS
+= $(SDL_CFLAGS
)
177 vnc.h
: vnc-tls.h vnc-auth-vencrypt.h vnc-auth-sasl.h keymaps.h
179 vnc.o
: vnc.c vnc.h vnc_keysym.h vnchextile.h d3des.c d3des.h
181 vnc.o
: CFLAGS
+= $(CONFIG_VNC_TLS_CFLAGS
)
183 vnc-tls.o
: vnc-tls.c vnc.h
185 vnc-auth-vencrypt.o
: vnc-auth-vencrypt.c vnc.h
187 vnc-auth-sasl.o
: vnc-auth-sasl.c vnc.h
189 curses.o
: curses.c keymaps.h curses_keys.h
191 bt-host.o
: CFLAGS
+= $(CONFIG_BLUEZ_CFLAGS
)
193 libqemu_common.a
: $(OBJS
)
195 #######################################################################
196 # USER_OBJS is code used by qemu userspace emulation
197 USER_OBJS
=cutils.o cache-utils.o
199 libqemu_user.a
: $(USER_OBJS
)
201 ######################################################################
203 qemu-img
$(EXESUF
): qemu-img.o qemu-tool.o osdep.o
$(BLOCK_OBJS
)
205 qemu-nbd
$(EXESUF
): qemu-nbd.o qemu-tool.o osdep.o
$(BLOCK_OBJS
)
207 qemu-img
$(EXESUF
) qemu-nbd
$(EXESUF
): LIBS
+= -lz
210 # avoid old build problems by removing potentially incorrect old files
211 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
212 rm -f
*.o
*.d
*.a
$(TOOLS
) TAGS cscope.
* *.pod
*~
*/*~
213 rm -f slirp
/*.o slirp
/*.d audio
/*.o audio
/*.d
214 $(MAKE
) -C tests
clean
215 for d in
$(TARGET_DIRS
); do \
216 $(MAKE
) -C
$$d $@ || exit
1 ; \
220 rm -f config-host.mak config-host.h
$(DOCS
)
221 rm -f qemu-
{doc
,tech
}.
{info,aux
,cp
,dvi,fn
,info,ky
,log
,pg
,toc
,tp
,vr
}
222 for d in
$(TARGET_DIRS
); do \
223 rm -rf
$$d || exit
1 ; \
226 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
227 ar de en-us fi fr-be hr it lv nl pl ru th \
228 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
231 BLOBS
=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
232 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
233 pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
240 mkdir
-p
"$(DESTDIR)$(docdir)"
241 $(INSTALL
) -m
644 qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
243 mkdir
-p
"$(DESTDIR)$(mandir)/man1"
244 $(INSTALL
) -m
644 qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
245 mkdir
-p
"$(DESTDIR)$(mandir)/man8"
246 $(INSTALL
) -m
644 qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
249 install: all $(if
$(BUILD_DOCS
),install-doc
)
250 mkdir
-p
"$(DESTDIR)$(bindir)"
252 $(INSTALL
) -m
755 -s
$(TOOLS
) "$(DESTDIR)$(bindir)"
255 mkdir
-p
"$(DESTDIR)$(datadir)"
256 set
-e
; for x in
$(BLOBS
); do \
257 $(INSTALL
) -m
644 $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
261 mkdir
-p
"$(DESTDIR)$(datadir)/keymaps"
262 set
-e
; for x in
$(KEYMAPS
); do \
263 $(INSTALL
) -m
644 $(SRC_PATH
)/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
266 for d in
$(TARGET_DIRS
); do \
267 $(MAKE
) -C
$$d $@ || exit
1 ; \
270 # various test targets
275 etags
*.
[ch
] tests
/*.
[ch
]
279 find .
-name
"*.[ch]" -print | sed
's,^\./,,' > .
/cscope.files
284 texi2html
-monolithic
-number
$<
292 qemu
.1: qemu-doc.texi
293 $(SRC_PATH
)/texi2pod.pl
$< qemu.pod
294 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
296 qemu-img
.1: qemu-img.texi
297 $(SRC_PATH
)/texi2pod.pl
$< qemu-img.pod
298 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
300 qemu-nbd
.8: qemu-nbd.texi
301 $(SRC_PATH
)/texi2pod.pl
$< qemu-nbd.pod
302 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
304 info: qemu-doc.
info qemu-tech.
info
306 dvi: qemu-doc.
dvi qemu-tech.
dvi
308 html
: qemu-doc.html qemu-tech.html
310 qemu-doc.
dvi qemu-doc.html qemu-doc.
info: qemu-img.texi qemu-nbd.texi
312 VERSION ?
= $(shell cat VERSION
)
313 FILE
= qemu-
$(VERSION
)
315 # tar release (use 'make -k tar' on a checkouted tree)
319 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
322 # generate a binary distribution
324 cd
/ && tar zcvf ~
/qemu-
$(VERSION
)-$(ARCH
).
tar.gz \
326 $(bindir)/qemu-system-x86_64 \
327 $(bindir)/qemu-system-arm \
328 $(bindir)/qemu-system-cris \
329 $(bindir)/qemu-system-m68k \
330 $(bindir)/qemu-system-mips \
331 $(bindir)/qemu-system-mipsel \
332 $(bindir)/qemu-system-mips64 \
333 $(bindir)/qemu-system-mips64el \
334 $(bindir)/qemu-system-ppc \
335 $(bindir)/qemu-system-ppcemb \
336 $(bindir)/qemu-system-ppc64 \
337 $(bindir)/qemu-system-sh4 \
338 $(bindir)/qemu-system-sh4eb \
339 $(bindir)/qemu-system-sparc \
340 $(bindir)/qemu-i386 \
341 $(bindir)/qemu-x86_64 \
342 $(bindir)/qemu-alpha \
344 $(bindir)/qemu-armeb \
345 $(bindir)/qemu-cris \
346 $(bindir)/qemu-m68k \
347 $(bindir)/qemu-mips \
348 $(bindir)/qemu-mipsel \
350 $(bindir)/qemu-ppc64 \
351 $(bindir)/qemu-ppc64abi32 \
353 $(bindir)/qemu-sh4eb \
354 $(bindir)/qemu-sparc \
355 $(bindir)/qemu-sparc64 \
356 $(bindir)/qemu-sparc32plus \
359 $(datadir)/bios.bin \
360 $(datadir)/vgabios.bin \
361 $(datadir)/vgabios-cirrus.bin \
362 $(datadir)/ppc_rom.bin \
364 $(datadir)/openbios-sparc32 \
365 $(datadir)/openbios-sparc64 \
366 $(datadir)/openbios-ppc \
367 $(datadir)/pxe-ne2k_pci.bin \
368 $(datadir)/pxe-rtl8139.bin \
369 $(datadir)/pxe-pcnet.bin \
370 $(datadir)/pxe-e1000.bin \
371 $(docdir
)/qemu-doc.html \
372 $(docdir
)/qemu-tech.html \
373 $(mandir)/man1
/qemu
.1 \
374 $(mandir)/man1
/qemu-img
.1 \
375 $(mandir)/man8
/qemu-nbd
.8
377 # Include automatically generated dependency files
378 -include $(wildcard *.d audio
/*.d slirp
/*.d
)