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 qemu-nbd
.8
27 all: $(TOOLS
) $(DOCS
) recurse-all
29 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
31 subdir-
%: dyngen
$(EXESUF
)
32 $(MAKE
) -C
$(subst subdir-
,,$@
) all
34 $(filter %-softmmu
,$(SUBDIR_RULES
)): libqemu_common.a
35 $(filter %-user
,$(SUBDIR_RULES
)): libqemu_user.a
37 recurse-all
: $(SUBDIR_RULES
)
39 #######################################################################
40 # BLOCK_OBJS is code used by both qemu system emulation and qemu-img
43 BLOCK_OBJS
+=block-cow.o block-qcow.o aes.o block-vmdk.o block-cloop.o
44 BLOCK_OBJS
+=block-dmg.o block-bochs.o block-vpc.o block-vvfat.o
45 BLOCK_OBJS
+=block-qcow2.o block-parallels.o
47 ######################################################################
48 # libqemu_common.a: Target independent part of system emulation. The
49 # long term path is to suppress *all* target specific code in case of
50 # system emulation, i.e. a single QEMU executable should support all
54 OBJS
+=readline.o console.o
58 OBJS
+=i2c.o smbus.o smbus_eeprom.o max7310.o max111x.o wm8750.o
59 OBJS
+=ssd0303.o ssd0323.o ads7846.o stellaris_input.o twl92230.o
60 OBJS
+=tmp105.o lm832x.o
61 OBJS
+=scsi-disk.o cdrom.o
63 OBJS
+=usb.o usb-hub.o usb-linux.o usb-hid.o usb-msd.o usb-wacom.o usb-serial.o
75 AUDIO_OBJS
= audio.o noaudio.o wavaudio.o mixeng.o
77 AUDIO_OBJS
+= sdlaudio.o
80 AUDIO_OBJS
+= ossaudio.o
82 ifdef CONFIG_COREAUDIO
83 AUDIO_OBJS
+= coreaudio.o
87 AUDIO_OBJS
+= alsaaudio.o
90 AUDIO_OBJS
+= dsoundaudio.o
93 AUDIO_OBJS
+= fmodaudio.o
94 audio
/audio.o audio
/fmodaudio.o
: CPPFLAGS
:= -I
$(CONFIG_FMOD_INC
) $(CPPFLAGS
)
99 AUDIO_OBJS
+= esdaudio.o
105 AUDIO_OBJS
+= audio_pt_int.o
107 AUDIO_OBJS
+= wavcapture.o
108 OBJS
+=$(addprefix audio
/, $(AUDIO_OBJS
))
111 OBJS
+=sdl.o x_keymap.o
123 CPPFLAGS
+=-I
$(SRC_PATH
)/slirp
124 SLIRP_OBJS
=cksum.o if.o ip_icmp.o ip_input.o ip_output.o \
125 slirp.o mbuf.o misc.o sbuf.o socket.o tcp_input.o tcp_output.o \
126 tcp_subr.o tcp_timer.o udp.o bootp.o debug.o tftp.o
127 OBJS
+=$(addprefix slirp
/, $(SLIRP_OBJS
))
131 $(CC
) $(CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
133 sdl.o
: sdl.c keymaps.c sdl_keysym.h
134 $(CC
) $(CFLAGS
) $(CPPFLAGS
) $(SDL_CFLAGS
) -c
-o
$@
$<
136 vnc.o
: vnc.c keymaps.c sdl_keysym.h vnchextile.h d3des.c d3des.h
137 $(CC
) $(CFLAGS
) $(CPPFLAGS
) $(CONFIG_VNC_TLS_CFLAGS
) -c
-o
$@
$<
139 curses.o
: curses.c keymaps.c curses_keys.h
140 $(CC
) $(CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
142 audio
/sdlaudio.o
: audio
/sdlaudio.c
143 $(CC
) $(CFLAGS
) $(CPPFLAGS
) $(SDL_CFLAGS
) -c
-o
$@
$<
145 libqemu_common.a
: $(OBJS
)
149 #######################################################################
150 # USER_OBJS is code used by qemu userspace emulation
153 libqemu_user.a
: $(USER_OBJS
)
155 $(AR
) rcs
$@
$(USER_OBJS
)
157 QEMU_IMG_BLOCK_OBJS
= $(BLOCK_OBJS
)
159 QEMU_IMG_BLOCK_OBJS
+= qemu-img-block-raw-win32.o
161 QEMU_IMG_BLOCK_OBJS
+= qemu-img-block-raw-posix.o
164 ######################################################################
166 qemu-img
$(EXESUF
): qemu-img.o qemu-img-block.o
$(QEMU_IMG_BLOCK_OBJS
)
167 $(CC
) $(LDFLAGS
) -o
$@
$^
-lz
$(LIBS
)
170 $(CC
) $(CFLAGS
) $(CPPFLAGS
) -DQEMU_IMG
-c
-o
$@
$<
173 $(CC
) $(CFLAGS
) $(CPPFLAGS
) -c
-o
$@
$<
175 qemu-nbd
$(EXESUF
): qemu-nbd.o nbd.o qemu-img-block.o \
176 $(QEMU_IMG_BLOCK_OBJS
)
177 $(CC
) $(LDFLAGS
) -o
$@
$^
-lz
$(LIBS
)
180 dyngen
$(EXESUF
): dyngen.c
181 $(HOST_CC
) $(CFLAGS
) $(CPPFLAGS
) -o
$@
$^
184 # avoid old build problems by removing potentially incorrect old files
185 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
186 rm -f
*.o
*.d
*.a
$(TOOLS
) dyngen
$(EXESUF
) TAGS cscope.
* *.pod
*~
*/*~
188 rm -f slirp
/*.o slirp
/*.d audio
/*.o audio
/*.d
189 $(MAKE
) -C tests
clean
190 for d in
$(TARGET_DIRS
); do \
191 $(MAKE
) -C
$$d $@ || exit
1 ; \
195 rm -f config-host.mak config-host.h
$(DOCS
)
196 rm -f qemu-
{doc
,tech
}.
{info,aux
,cp
,dvi,fn
,info,ky
,log
,pg
,toc
,tp
,vr
}
197 for d in
$(TARGET_DIRS
); do \
198 rm -rf
$$d || exit
1 ; \
201 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
202 ar de en-us fi fr-be hr it lv nl pl ru th \
203 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
206 mkdir
-p
"$(DESTDIR)$(docdir)"
207 $(INSTALL
) -m
644 qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
209 mkdir
-p
"$(DESTDIR)$(mandir)/man1"
210 $(INSTALL
) qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
211 mkdir
-p
"$(DESTDIR)$(mandir)/man8"
212 $(INSTALL
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
215 install: all $(if
$(BUILD_DOCS
),install-doc
)
216 mkdir
-p
"$(DESTDIR)$(bindir)"
218 $(INSTALL
) -m
755 -s
$(TOOLS
) "$(DESTDIR)$(bindir)"
220 mkdir
-p
"$(DESTDIR)$(datadir)"
221 set
-e
; for x in bios.bin vgabios.bin vgabios-cirrus.bin ppc_rom.bin \
222 video.x openbios-sparc32 openbios-sparc64 pxe-ne2k_pci.bin \
223 pxe-rtl8139.bin pxe-pcnet.bin pxe-e1000.bin extboot.bin \
226 $(INSTALL
) -m
644 $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
229 mkdir
-p
"$(DESTDIR)$(datadir)/keymaps"
230 set
-e
; for x in
$(KEYMAPS
); do \
231 $(INSTALL
) -m
644 $(SRC_PATH
)/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
234 for d in
$(TARGET_DIRS
); do \
235 $(MAKE
) -C
$$d $@ || exit
1 ; \
238 # various test targets
243 etags
*.
[ch
] tests
/*.
[ch
]
247 find .
-name
"*.[ch]" -print > .
/cscope.files
252 texi2html
-monolithic
-number
$<
260 qemu
.1: qemu-doc.texi
261 $(SRC_PATH
)/texi2pod.pl
$< qemu.pod
262 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
264 qemu-img
.1: qemu-img.texi
265 $(SRC_PATH
)/texi2pod.pl
$< qemu-img.pod
266 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
268 qemu-nbd
.8: qemu-nbd.texi
269 $(SRC_PATH
)/texi2pod.pl
$< qemu-nbd.pod
270 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
272 info: qemu-doc.
info qemu-tech.
info
274 dvi: qemu-doc.
dvi qemu-tech.
dvi
276 html
: qemu-doc.html qemu-tech.html
278 VERSION ?
= $(shell cat VERSION
)
279 FILE
= qemu-
$(VERSION
)
281 # tar release (use 'make -k tar' on a checkouted tree)
285 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
288 # generate a binary distribution
290 cd
/ && tar zcvf ~
/qemu-
$(VERSION
)-$(ARCH
).
tar.gz \
292 $(bindir)/qemu-system-ppc \
293 $(bindir)/qemu-system-ppc64 \
294 $(bindir)/qemu-system-ppcemb \
295 $(bindir)/qemu-system-sparc \
296 $(bindir)/qemu-system-x86_64 \
297 $(bindir)/qemu-system-mips \
298 $(bindir)/qemu-system-mipsel \
299 $(bindir)/qemu-system-mips64 \
300 $(bindir)/qemu-system-mips64el \
301 $(bindir)/qemu-system-arm \
302 $(bindir)/qemu-system-m68k \
303 $(bindir)/qemu-system-sh4 \
304 $(bindir)/qemu-system-sh4eb \
305 $(bindir)/qemu-system-cris \
306 $(bindir)/qemu-i386 \
307 $(bindir)/qemu-x86_64 \
309 $(bindir)/qemu-armeb \
310 $(bindir)/qemu-sparc \
311 $(bindir)/qemu-sparc32plus \
312 $(bindir)/qemu-sparc64 \
314 $(bindir)/qemu-ppc64 \
315 $(bindir)/qemu-ppc64abi32 \
316 $(bindir)/qemu-mips \
317 $(bindir)/qemu-mipsel \
318 $(bindir)/qemu-alpha \
319 $(bindir)/qemu-m68k \
321 $(bindir)/qemu-sh4eb \
322 $(bindir)/qemu-cris \
325 $(datadir)/bios.bin \
326 $(datadir)/vgabios.bin \
327 $(datadir)/vgabios-cirrus.bin \
328 $(datadir)/ppc_rom.bin \
330 $(datadir)/openbios-sparc32 \
331 $(datadir)/openbios-sparc64 \
332 $(datadir)/pxe-ne2k_pci.bin \
333 $(datadir)/pxe-rtl8139.bin \
334 $(datadir)/pxe-pcnet.bin \
335 $(datadir)/extboot.bin \
336 $(docdir
)/qemu-doc.html \
337 $(docdir
)/qemu-tech.html \
338 $(mandir)/man1
/qemu
.1 $(mandir)/man1
/qemu-img
.1
339 $(mandir)/man8
/qemu-nbd
.8
341 # Include automatically generated dependency files
342 -include $(wildcard *.d audio
/*.d slirp
/*.d
)