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
68 BLOCK_OBJS
+= compatfd.o
71 ######################################################################
72 # libqemu_common.a: Target independent part of system emulation. The
73 # long term path is to suppress *all* target specific code in case of
74 # system emulation, i.e. a single QEMU executable should support all
78 OBJS
+=readline.o console.o
81 OBJS
+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
82 OBJS
+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
83 OBJS
+=tmp105.o lm832x.o
84 OBJS
+=scsi-disk.o cdrom.o
86 OBJS
+=usb.o usb-hub.o usb-
$(HOST_USB
).o usb-hid.o usb-msd.o usb-wacom.o
87 OBJS
+=usb-serial.o usb-net.o
89 OBJS
+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
90 OBJS
+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
91 OBJS
+=qemu-char.o aio.o net-checksum.o savevm.o cache-utils.o
101 OBJS
+=migration-exec.o
104 AUDIO_OBJS
= audio.o noaudio.o wavaudio.o mixeng.o
106 AUDIO_OBJS
+= sdlaudio.o
109 AUDIO_OBJS
+= ossaudio.o
111 ifdef CONFIG_COREAUDIO
112 AUDIO_OBJS
+= coreaudio.o
116 AUDIO_OBJS
+= alsaaudio.o
119 AUDIO_OBJS
+= dsoundaudio.o
122 AUDIO_OBJS
+= fmodaudio.o
123 audio
/audio.o audio
/fmodaudio.o
: CPPFLAGS
:= -I
$(CONFIG_FMOD_INC
) $(CPPFLAGS
)
128 AUDIO_OBJS
+= esdaudio.o
133 AUDIO_OBJS
+= paaudio.o
139 AUDIO_OBJS
+= audio_pt_int.o
141 AUDIO_OBJS
+= wavcapture.o
142 OBJS
+=$(addprefix audio
/, $(AUDIO_OBJS
))
145 OBJS
+=sdl.o x_keymap.o
157 CPPFLAGS
+=-I
$(SRC_PATH
)/slirp
158 SLIRP_OBJS
=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
159 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
160 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
161 OBJS
+=$(addprefix slirp
/, $(SLIRP_OBJS
))
168 sdl.o
: sdl.c keymaps.c sdl_keysym.h
170 sdl.o audio
/sdlaudio.o
: CFLAGS
+= $(SDL_CFLAGS
)
172 vnc.o
: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
174 vnc.o
: CFLAGS
+= $(CONFIG_VNC_TLS_CFLAGS
)
176 curses.o
: curses.c keymaps.c curses_keys.h
178 bt-host.o
: CFLAGS
+= $(CONFIG_BLUEZ_CFLAGS
)
180 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 ######################################################################
190 qemu-img
$(EXESUF
): qemu-img.o qemu-tool.o osdep.o
$(BLOCK_OBJS
)
192 qemu-nbd
$(EXESUF
): qemu-nbd.o qemu-tool.o osdep.o
$(BLOCK_OBJS
)
194 qemu-img
$(EXESUF
) qemu-nbd
$(EXESUF
): LIBS
+= -lz
197 # avoid old build problems by removing potentially incorrect old files
198 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
199 rm -f
*.o
*.d
*.a
$(TOOLS
) TAGS cscope.
* *.pod
*~
*/*~
200 rm -f slirp
/*.o slirp
/*.d audio
/*.o audio
/*.d
201 $(MAKE
) -C tests
clean
202 for d in
$(TARGET_DIRS
); do \
203 $(MAKE
) -C
$$d $@ || exit
1 ; \
207 rm -f config-host.mak config-host.h
$(DOCS
)
208 rm -f qemu-
{doc
,tech
}.
{info,aux
,cp
,dvi,fn
,info,ky
,log
,pg
,toc
,tp
,vr
}
209 for d in
$(TARGET_DIRS
); do \
210 rm -rf
$$d || exit
1 ; \
213 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
214 ar de en-us fi fr-be hr it lv nl pl ru th \
215 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
218 BLOBS
=bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
219 video.x openbios-sparc32 openbios-sparc64 openbios-ppc \
220 pxe-ne2k_pci.bin pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin \
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
) -m
644 qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
233 mkdir
-p
"$(DESTDIR)$(mandir)/man8"
234 $(INSTALL
) -m
644 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)"
243 mkdir
-p
"$(DESTDIR)$(datadir)"
244 set
-e
; for x in
$(BLOBS
); do \
245 if
[ -f
$(SRC_PATH
)/pc-bios
/$$x ];then \
246 $(INSTALL
) -m
644 $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
251 mkdir
-p
"$(DESTDIR)$(datadir)/keymaps"
252 set
-e
; for x in
$(KEYMAPS
); do \
253 $(INSTALL
) -m
644 $(SRC_PATH
)/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
256 for d in
$(TARGET_DIRS
); do \
257 $(MAKE
) -C
$$d $@ || exit
1 ; \
260 # various test targets
265 etags
*.
[ch
] tests
/*.
[ch
]
269 find .
-name
"*.[ch]" -print | sed
's,^\./,,' > .
/cscope.files
274 texi2html
-monolithic
-number
$<
282 qemu
.1: qemu-doc.texi
283 $(SRC_PATH
)/texi2pod.pl
$< qemu.pod
284 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
286 qemu-img
.1: qemu-img.texi
287 $(SRC_PATH
)/texi2pod.pl
$< qemu-img.pod
288 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
290 qemu-nbd
.8: qemu-nbd.texi
291 $(SRC_PATH
)/texi2pod.pl
$< qemu-nbd.pod
292 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
294 info: qemu-doc.
info qemu-tech.
info
296 dvi: qemu-doc.
dvi qemu-tech.
dvi
298 html
: qemu-doc.html qemu-tech.html
300 qemu-doc.
dvi qemu-doc.html qemu-doc.
info: qemu-img.texi qemu-nbd.texi
302 VERSION ?
= $(shell cat VERSION
)
303 FILE
= qemu-
$(VERSION
)
305 # tar release (use 'make -k tar' on a checkouted tree)
309 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
312 # generate a binary distribution
314 cd
/ && tar zcvf ~
/qemu-
$(VERSION
)-$(ARCH
).
tar.gz \
316 $(bindir)/qemu-system-x86_64 \
317 $(bindir)/qemu-system-arm \
318 $(bindir)/qemu-system-cris \
319 $(bindir)/qemu-system-m68k \
320 $(bindir)/qemu-system-mips \
321 $(bindir)/qemu-system-mipsel \
322 $(bindir)/qemu-system-mips64 \
323 $(bindir)/qemu-system-mips64el \
324 $(bindir)/qemu-system-ppc \
325 $(bindir)/qemu-system-ppcemb \
326 $(bindir)/qemu-system-ppc64 \
327 $(bindir)/qemu-system-sh4 \
328 $(bindir)/qemu-system-sh4eb \
329 $(bindir)/qemu-system-sparc \
330 $(bindir)/qemu-i386 \
331 $(bindir)/qemu-x86_64 \
332 $(bindir)/qemu-alpha \
334 $(bindir)/qemu-armeb \
335 $(bindir)/qemu-cris \
336 $(bindir)/qemu-m68k \
337 $(bindir)/qemu-mips \
338 $(bindir)/qemu-mipsel \
340 $(bindir)/qemu-ppc64 \
341 $(bindir)/qemu-ppc64abi32 \
343 $(bindir)/qemu-sh4eb \
344 $(bindir)/qemu-sparc \
345 $(bindir)/qemu-sparc64 \
346 $(bindir)/qemu-sparc32plus \
349 $(datadir)/bios.bin \
350 $(datadir)/vgabios.bin \
351 $(datadir)/vgabios-cirrus.bin \
352 $(datadir)/ppc_rom.bin \
354 $(datadir)/openbios-sparc32 \
355 $(datadir)/openbios-sparc64 \
356 $(datadir)/openbios-ppc \
357 $(datadir)/pxe-ne2k_pci.bin \
358 $(datadir)/pxe-rtl8139.bin \
359 $(datadir)/pxe-pcnet.bin \
360 $(datadir)/pxe-e1000.bin \
361 $(datadir)/extboot.bin \
362 $(docdir
)/qemu-doc.html \
363 $(docdir
)/qemu-tech.html \
364 $(mandir)/man1
/qemu
.1 \
365 $(mandir)/man1
/qemu-img
.1 \
366 $(mandir)/man8
/qemu-nbd
.8
368 # Include automatically generated dependency files
369 -include $(wildcard *.d audio
/*.d slirp
/*.d
)