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
) $(BASE_CFLAGS
) -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 pxe-e1000.bin extboot.bin \
201 $(INSTALL
) -m
644 $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
204 mkdir
-p
"$(DESTDIR)$(datadir)/keymaps"
205 set
-e
; for x in
$(KEYMAPS
); do \
206 $(INSTALL
) -m
644 $(SRC_PATH
)/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
209 for d in
$(TARGET_DIRS
); do \
210 $(MAKE
) -C
$$d $@ || exit
1 ; \
213 # various test targets
218 etags
*.
[ch
] tests
/*.
[ch
]
222 find .
-name
"*.[ch]" -print > .
/cscope.files
227 texi2html
-monolithic
-number
$<
235 qemu
.1: qemu-doc.texi
236 $(SRC_PATH
)/texi2pod.pl
$< qemu.pod
237 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
239 qemu-img
.1: qemu-img.texi
240 $(SRC_PATH
)/texi2pod.pl
$< qemu-img.pod
241 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
243 info: qemu-doc.
info qemu-tech.
info
245 dvi: qemu-doc.
dvi qemu-tech.
dvi
247 html
: qemu-doc.html qemu-tech.html
249 VERSION ?
= $(shell cat VERSION
)
250 FILE
= qemu-
$(VERSION
)
252 # tar release (use 'make -k tar' on a checkouted tree)
256 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
259 # generate a binary distribution
261 cd
/ && tar zcvf ~
/qemu-
$(VERSION
)-$(ARCH
).
tar.gz \
263 $(bindir)/qemu-system-ppc \
264 $(bindir)/qemu-system-ppc64 \
265 $(bindir)/qemu-system-ppcemb \
266 $(bindir)/qemu-system-sparc \
267 $(bindir)/qemu-system-x86_64 \
268 $(bindir)/qemu-system-mips \
269 $(bindir)/qemu-system-mipsel \
270 $(bindir)/qemu-system-mips64 \
271 $(bindir)/qemu-system-mips64el \
272 $(bindir)/qemu-system-arm \
273 $(bindir)/qemu-system-m68k \
274 $(bindir)/qemu-system-sh4 \
275 $(bindir)/qemu-system-sh4eb \
276 $(bindir)/qemu-system-cris \
277 $(bindir)/qemu-i386 \
278 $(bindir)/qemu-x86_64 \
280 $(bindir)/qemu-armeb \
281 $(bindir)/qemu-sparc \
282 $(bindir)/qemu-sparc32plus \
283 $(bindir)/qemu-sparc64 \
285 $(bindir)/qemu-ppc64 \
286 $(bindir)/qemu-ppc64abi32 \
287 $(bindir)/qemu-mips \
288 $(bindir)/qemu-mipsel \
289 $(bindir)/qemu-alpha \
290 $(bindir)/qemu-m68k \
292 $(bindir)/qemu-sh4eb \
293 $(bindir)/qemu-cris \
295 $(datadir)/bios.bin \
296 $(datadir)/vgabios.bin \
297 $(datadir)/vgabios-cirrus.bin \
298 $(datadir)/ppc_rom.bin \
300 $(datadir)/openbios-sparc32 \
301 $(datadir)/pxe-ne2k_pci.bin \
302 $(datadir)/pxe-rtl8139.bin \
303 $(datadir)/pxe-pcnet.bin \
304 $(datadir)/extboot.bin \
305 $(docdir
)/qemu-doc.html \
306 $(docdir
)/qemu-tech.html \
307 $(mandir)/man1
/qemu
.1 $(mandir)/man1
/qemu-img
.1
309 # Include automatically generated dependency files
310 -include $(wildcard *.d audio
/*.d slirp
/*.d
)