3 # Always point to the root of the build tree (needs GNU make).
6 GENERATED_HEADERS
= config-host.h trace.h qemu-options.def
7 ifeq ($(TRACE_BACKEND
),dtrace
)
8 GENERATED_HEADERS
+= trace-dtrace.h
10 GENERATED_HEADERS
+= qmp-commands.h qapi-types.h qapi-visit.h
11 GENERATED_SOURCES
+= qmp-marshal.c qapi-types.c qapi-visit.c
13 ifneq ($(wildcard config-host.mak
),)
14 # Put the all: rule here so that config-host.mak can contain dependencies.
16 include config-host.mak
17 include $(SRC_PATH
)/rules.mak
18 config-host.mak
: $(SRC_PATH
)/configure
19 @echo
$@ is out-of-date
, running configure
20 @sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
23 @echo
"Please call configure before running make!"
27 # Don't try to regenerate Makefile or configure
28 # We don't generate any of them
32 .PHONY
: all clean cscope
distclean dvi html
info install install-doc \
33 pdf recurse-all speed
tar tarbin
test build-all
35 $(call set-vpath
, $(SRC_PATH
):$(SRC_PATH
)/hw
)
37 LIBS
+=-lz
$(LIBS_TOOLS
)
39 HELPERS-
$(CONFIG_LINUX
) = qemu-bridge-helper
$(EXESUF
)
42 DOCS
=qemu-doc.html qemu-tech.html qemu
.1 qemu-img
.1 qemu-nbd
.8 QMP
/qmp-commands.txt
44 DOCS
+=fsdev
/virtfs-proxy-helper
.1
50 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
) BUILD_DIR
=$(BUILD_DIR
)
51 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(TARGET_DIRS
))
52 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %/config-devices.mak.d
, $(TARGET_DIRS
))
54 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
)
55 $(call quiet-command
,cat
$(SUBDIR_DEVICES_MAK
) | grep
=y |
sort -u
> $@
," GEN $@")
57 -include $(SUBDIR_DEVICES_MAK_DEP
)
59 %/config-devices.mak
: default-configs
/%.mak
60 $(call quiet-command
,$(SHELL
) $(SRC_PATH
)/scripts
/make_device_config.sh
$@
$<, " GEN $@")
61 @if
test -f
$@
; then \
62 if cmp
-s
$@.old
$@
; then \
66 if
test -f
$@.old
; then \
67 echo
"WARNING: $@ (user modified) out of date.";\
69 echo
"WARNING: $@ out of date.";\
71 echo
"Run \"make defconfig\" to regenerate."; \
80 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
82 -include config-all-devices.mak
84 build-all
: $(DOCS
) $(TOOLS
) $(HELPERS-y
) recurse-all
86 config-host.h
: config-host.h-timestamp
87 config-host.h-timestamp
: config-host.mak
88 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
89 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
91 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
93 subdir-
%: $(GENERATED_HEADERS
)
94 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
96 ifneq ($(wildcard config-host.mak
),)
97 include $(SRC_PATH
)/Makefile.objs
100 $(common-obj-y
): $(GENERATED_HEADERS
)
101 subdir-libcacard
: $(oslib-obj-y
) $(trace-obj-y
) qemu-timer-common.o
103 $(filter %-softmmu
,$(SUBDIR_RULES
)): $(trace-obj-y
) $(common-obj-y
) subdir-libdis
105 $(filter %-user
,$(SUBDIR_RULES
)): $(GENERATED_HEADERS
) $(trace-obj-y
) subdir-libdis-user subdir-libuser
107 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
109 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/",)
111 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
113 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
115 audio
/audio.o audio
/fmodaudio.o
: QEMU_CFLAGS
+= $(FMOD_CFLAGS
)
117 QEMU_CFLAGS
+=$(CURL_CFLAGS
)
119 QEMU_CFLAGS
+= -I
$(SRC_PATH
)/include
121 ui
/cocoa.o
: ui
/cocoa.m
123 ui
/sdl.o audio
/sdlaudio.o ui
/sdl_zoom.o baum.o
: QEMU_CFLAGS
+= $(SDL_CFLAGS
)
125 ui
/vnc.o
: QEMU_CFLAGS
+= $(VNC_TLS_CFLAGS
)
127 bt-host.o
: QEMU_CFLAGS
+= $(BLUEZ_CFLAGS
)
129 version.o
: $(SRC_PATH
)/version.rc config-host.h
130 $(call quiet-command
,$(WINDRES
) -I.
-o
$@
$<," RC $(TARGET_DIR)$@")
132 version-obj-
$(CONFIG_WIN32
) += version.o
133 ######################################################################
134 # Support building shared library libcacard
136 .PHONY
: libcacard.la install-libcacard
139 @echo
"libtool is missing, please install and rerun configure"; exit
1
142 @echo
"libtool is missing, please install and rerun configure"; exit
1
144 libcacard.la
: $(GENERATED_HEADERS
) $(oslib-obj-y
) qemu-timer-common.o
$(addsuffix .lo
, $(basename $(trace-obj-y
)))
145 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C libcacard V
="$(V)" TARGET_DIR
="$*/" libcacard.la
,)
147 install-libcacard
: libcacard.la
148 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C libcacard V
="$(V)" TARGET_DIR
="$*/" install-libcacard
,)
150 ######################################################################
152 qemu-img.o
: qemu-img-cmds.h
153 qemu-img.o qemu-tool.o qemu-nbd.o qemu-io.o cmd.o qemu-ga.o
: $(GENERATED_HEADERS
)
155 tools-obj-y
= $(oslib-obj-y
) $(trace-obj-y
) qemu-tool.o qemu-timer.o \
156 qemu-timer-common.o main-loop.o notify.o iohandler.o cutils.o async.o
157 tools-obj-
$(CONFIG_POSIX
) += compatfd.o
159 qemu-img
$(EXESUF
): qemu-img.o
$(tools-obj-y
) $(block-obj-y
)
160 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(tools-obj-y
) $(block-obj-y
)
161 qemu-io
$(EXESUF
): qemu-io.o cmd.o
$(tools-obj-y
) $(block-obj-y
)
163 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
164 qemu-bridge-helper.o
: $(GENERATED_HEADERS
)
166 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/virtio-9p-marshal.o oslib-posix.o
$(trace-obj-y
)
167 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
169 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
170 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
," GEN $@")
172 $(qapi-obj-y
): $(GENERATED_HEADERS
)
173 qapi-dir
:= $(BUILD_DIR
)/qapi-generated
174 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
176 gen-out-type
= $(subst .
,-,$(suffix $@
))
178 ifneq ($(wildcard config-host.mak
),)
179 include $(SRC_PATH
)/tests
/Makefile
182 $(qapi-dir
)/qga-qapi-types.c
$(qapi-dir
)/qga-qapi-types.h
:\
183 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-types.py
184 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
185 $(qapi-dir
)/qga-qapi-visit.c
$(qapi-dir
)/qga-qapi-visit.h
:\
186 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-visit.py
187 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
188 $(qapi-dir
)/qga-qmp-commands.h
$(qapi-dir
)/qga-qmp-marshal.c
:\
189 $(SRC_PATH
)/qapi-schema-guest.json
$(SRC_PATH
)/scripts
/qapi-commands.py
190 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -o
"$(qapi-dir)" -p
"qga-" < $<, " GEN $@")
192 qapi-types.c qapi-types.h
:\
193 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-types.py
194 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-types.py
$(gen-out-type
) -o
"." < $<, " GEN $@")
195 qapi-visit.c qapi-visit.h
:\
196 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-visit.py
197 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-visit.py
$(gen-out-type
) -o
"." < $<, " GEN $@")
198 qmp-commands.h qmp-marshal.c
:\
199 $(SRC_PATH
)/qapi-schema.json
$(SRC_PATH
)/scripts
/qapi-commands.py
200 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-commands.py
$(gen-out-type
) -m
-o
"." < $<, " GEN $@")
202 QGALIB_OBJ
=$(addprefix $(qapi-dir
)/, qga-qapi-types.o qga-qapi-visit.o qga-qmp-marshal.o
)
203 QGALIB_GEN
=$(addprefix $(qapi-dir
)/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h
)
204 $(QGALIB_OBJ
): $(QGALIB_GEN
) $(GENERATED_HEADERS
)
205 $(qga-obj-y
) qemu-ga.o
: $(QGALIB_GEN
) $(GENERATED_HEADERS
)
207 qemu-ga
$(EXESUF
): qemu-ga.o
$(qga-obj-y
) $(tools-obj-y
) $(qapi-obj-y
) $(qobject-obj-y
) $(version-obj-y
) $(QGALIB_OBJ
)
209 QEMULIBS
=libhw32 libhw64 libuser libdis libdis-user
212 # avoid old build problems by removing potentially incorrect old files
213 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
214 rm -f qemu-options.def
215 rm -f
*.o
*.d
*.a
*.lo
$(TOOLS
) $(HELPERS-y
) qemu-ga TAGS cscope.
* *.pod
*~
*/*~
217 rm -f slirp
/*.o slirp
/*.d audio
/*.o audio
/*.d block
/*.o block
/*.d net
/*.o net
/*.d fsdev
/*.o fsdev
/*.d ui
/*.o ui
/*.d qapi
/*.o qapi
/*.d qga
/*.o qga
/*.d
218 rm -f qemu-img-cmds.h
219 rm -f trace
/*.o trace
/*.d
220 rm -f trace.c trace.h trace.c-timestamp trace.h-timestamp
221 rm -f trace-dtrace.dtrace trace-dtrace.dtrace-timestamp
222 rm -f trace-dtrace.h trace-dtrace.h-timestamp
223 rm -f
$(GENERATED_HEADERS
)
224 rm -f
$(GENERATED_SOURCES
)
226 $(MAKE
) -C tests
/tcg
clean
227 for d in
$(ALL_SUBDIRS
) $(QEMULIBS
) libcacard
; do \
228 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
229 rm -f
$$d/qemu-options.def
; \
233 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi
234 rm -f config-all-devices.mak
235 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
236 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.
dvi
237 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
238 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
241 rm -f linux-headers
/asm
242 rm -f qemu-tech.
info qemu-tech.aux qemu-tech.cp qemu-tech.
dvi qemu-tech.fn qemu-tech.
info qemu-tech.ky qemu-tech.log qemu-tech.pdf qemu-tech.pg qemu-tech.toc qemu-tech.tp qemu-tech.vr
243 for d in
$(TARGET_DIRS
) $(QEMULIBS
); do \
244 rm -rf
$$d || exit
1 ; \
247 KEYMAPS
=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
248 ar de en-us fi fr-be hr it lv nl pl ru th \
249 common de-ch es fo fr-ca hu ja mk nl-be pt sl tr
252 BLOBS
=bios.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
253 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin \
254 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc \
255 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
256 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
257 bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
259 multiboot.bin linuxboot.bin kvmvapic.bin \
261 spapr-rtas.bin slof.bin \
268 $(INSTALL_DIR
) "$(DESTDIR)$(docdir)"
269 $(INSTALL_DATA
) qemu-doc.html qemu-tech.html
"$(DESTDIR)$(docdir)"
271 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
272 $(INSTALL_DATA
) qemu
.1 qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
273 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
274 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
277 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
278 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
281 $(INSTALL_DIR
) "$(DESTDIR)$(sysconfdir)/qemu"
282 $(INSTALL_DATA
) $(SRC_PATH
)/sysconfigs
/target
/target-x86_64.conf
"$(DESTDIR)$(sysconfdir)/qemu"
284 install: all $(if
$(BUILD_DOCS
),install-doc
) install-sysconfig
285 $(INSTALL_DIR
) "$(DESTDIR)$(bindir)"
287 $(INSTALL_PROG
) $(STRIP_OPT
) $(TOOLS
) "$(DESTDIR)$(bindir)"
289 ifneq ($(HELPERS-y
),)
290 $(INSTALL_DIR
) "$(DESTDIR)$(libexecdir)"
291 $(INSTALL_PROG
) $(STRIP_OPT
) $(HELPERS-y
) "$(DESTDIR)$(libexecdir)"
294 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)"
295 set
-e
; for x in
$(BLOBS
); do \
296 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(datadir)"; \
299 $(INSTALL_DIR
) "$(DESTDIR)$(datadir)/keymaps"
300 set
-e
; for x in
$(KEYMAPS
); do \
301 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(datadir)/keymaps"; \
303 for d in
$(TARGET_DIRS
); do \
304 $(MAKE
) -C
$$d $@ || exit
1 ; \
307 # various test targets
309 $(MAKE
) -C tests
/tcg
$@
313 find
"$(SRC_PATH)" -name
'*.[hc]' -print0 | xargs
-0 etags
317 find
"$(SRC_PATH)" -name
"*.[chsS]" -print | sed
's,^\./,,' > .
/cscope.files
322 MAKEINFOFLAGS
=--no-headers
--no-split
--number-sections
323 TEXIFLAG
=$(if
$(V
),,--quiet
)
325 $(call quiet-command
,texi2dvi $(TEXIFLAG
) -I .
$<," GEN $@")
328 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) --html
$< -o
$@
, \
332 $(call quiet-command
,$(MAKEINFO
) $< -o
$@
," GEN $@")
335 $(call quiet-command
,texi2pdf
$(TEXIFLAG
) -I .
$<," GEN $@")
337 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
338 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
340 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
341 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
343 QMP
/qmp-commands.txt
: $(SRC_PATH
)/qmp-commands.hx
344 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-q
< $< > $@
," GEN $@")
346 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
347 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
," GEN $@")
349 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi
350 $(call quiet-command
, \
351 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu.pod
&& \
352 pod2man
--section
=1 --center
=" " --release
=" " qemu.pod
> $@
, \
355 qemu-img
.1: qemu-img.texi qemu-img-cmds.texi
356 $(call quiet-command
, \
357 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-img.pod
&& \
358 pod2man
--section
=1 --center
=" " --release
=" " qemu-img.pod
> $@
, \
361 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
362 $(call quiet-command
, \
363 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< fsdev
/virtfs-proxy-helper.pod
&& \
364 pod2man
--section
=1 --center
=" " --release
=" " fsdev
/virtfs-proxy-helper.pod
> $@
, \
367 qemu-nbd
.8: qemu-nbd.texi
368 $(call quiet-command
, \
369 perl
-Ww
-- $(SRC_PATH
)/scripts
/texi2pod.pl
$< qemu-nbd.pod
&& \
370 pod2man
--section
=8 --center
=" " --release
=" " qemu-nbd.pod
> $@
, \
373 dvi: qemu-doc.
dvi qemu-tech.
dvi
374 html
: qemu-doc.html qemu-tech.html
375 info: qemu-doc.
info qemu-tech.
info
376 pdf
: qemu-doc.pdf qemu-tech.pdf
378 qemu-doc.
dvi qemu-doc.html qemu-doc.
info qemu-doc.pdf
: \
379 qemu-img.texi qemu-nbd.texi qemu-options.texi \
380 qemu-monitor.texi qemu-img-cmds.texi
382 VERSION ?
= $(shell cat VERSION
)
383 FILE
= qemu-
$(VERSION
)
385 # tar release (use 'make -k tar' on a checkouted tree)
389 cd
/tmp
&& tar zcvf ~
/$(FILE
).
tar.gz
$(FILE
) --exclude CVS
--exclude .git
--exclude .svn
392 # Include automatically generated dependency files
393 -include $(wildcard *.d audio
/*.d slirp
/*.d block
/*.d net
/*.d ui
/*.d qapi
/*.d qga
/*.d
)