3 ifneq ($(words $(subst :, ,$(CURDIR))), 1)
4 $(error main directory cannot contain spaces nor colons)
7 # Always point to the root of the build tree (needs GNU make).
10 # Before including a proper config-host.mak, assume we are in the source tree
13 UNCHECKED_GOALS := %clean TAGS cscope ctags dist \
15 help check-help print-% \
16 docker docker-% vm-help vm-test vm-build-%
18 # All following code might depend on configuration variables
19 ifneq ($(wildcard config-host.mak),)
20 # Put the all: rule here so that config-host.mak can contain dependencies.
22 include config-host.mak
26 .PHONY: git-submodule-update
28 git_module_status := $(shell \
30 GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
34 ifeq (1,$(git_module_status))
35 ifeq (no,$(GIT_UPDATE))
37 $(call quiet-command, \
39 echo "GIT submodule checkout is out of date. Please run" && \
40 echo " scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \
41 echo "from the source directory checkout $(SRC_PATH)" && \
46 $(call quiet-command, \
47 (cd $(SRC_PATH) && GIT="$(GIT)" ./scripts/git-submodule.sh update $(GIT_SUBMODULES)), \
48 "GIT","$(GIT_SUBMODULES)")
52 export NINJA=./ninjatool
54 # Running meson regenerates both build.ninja and ninjatool, and that is
55 # enough to prime the rest of the build.
56 ninjatool: build.ninja
58 # Only needed in case Makefile.ninja does not exist.
59 .PHONY: ninja-clean ninja-distclean clean-ctlist
63 build.ninja: config-host.mak
65 Makefile.ninja: build.ninja ninjatool
66 ./ninjatool -t ninja2make --omit clean dist uninstall < $< > $@
67 -include Makefile.ninja
69 ${ninja-targets-c_COMPILER} ${ninja-targets-cpp_COMPILER}: .var.command += -MP
71 # If MESON is empty, the rule will be re-evaluated after Makefiles are
72 # reread (and MESON won't be empty anymore).
74 Makefile.mtest: build.ninja scripts/mtest2make.py
75 $(MESON) introspect --tests | $(PYTHON) scripts/mtest2make.py > $@
76 -include Makefile.mtest
79 .git-submodule-status: git-submodule-update config-host.mak
81 # Check that we're not trying to do an out-of-tree build from
82 # a tree that's been used for an in-tree build.
83 ifneq ($(realpath $(SRC_PATH)),$(realpath .))
84 ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
85 $(error This is an out of tree build but your source tree ($(SRC_PATH)) \
86 seems to have been used for an in-tree build. You can fix this by running \
87 "$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree)
91 CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
92 CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
93 CONFIG_XEN := $(CONFIG_XEN_BACKEND)
95 -include config-all-devices.mak
96 -include config-all-disas.mak
98 config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios $(SRC_PATH)/VERSION
99 @echo $@ is out-of-date, running configure
100 @if test -f meson-private/coredata.dat; then \
101 ./config.status --skip-meson; \
106 # Force configure to re-run if the API symbols are updated
107 ifeq ($(CONFIG_PLUGIN),y)
108 config-host.mak: $(SRC_PATH)/plugins/qemu-plugins.symbols
113 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
114 @echo "Please call configure before running make!"
119 include $(SRC_PATH)/rules.mak
121 # lor is defined in rules.mak
122 CONFIG_BLOCK := $(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS))
124 generated-files-y += target/s390x/gen-features.h
125 target/s390x/gen-features.h: Makefile.ninja
127 generated-files-y += .git-submodule-status
129 # Don't try to regenerate Makefile or configure
130 # We don't generate any of them
134 .PHONY: all clean cscope distclean html info install install-doc \
135 pdf txt recurse-all dist msi FORCE
137 $(call set-vpath, $(SRC_PATH))
139 LIBS+=-lz $(LIBS_TOOLS)
141 HELPERS-y = $(HELPERS)
143 # Sphinx does not allow building manuals into the same directory as
144 # the source files, so if we're doing an in-tree QEMU build we must
145 # build the manuals into a subdirectory (and then install them from
146 # there for 'make install'). For an out-of-tree build we can just
147 # use the docs/ subdirectory in the build tree as normal.
148 ifeq ($(realpath $(SRC_PATH)),$(realpath .))
149 MANUAL_BUILDDIR := docs/built
151 MANUAL_BUILDDIR := docs
155 DOCS+=$(MANUAL_BUILDDIR)/system/qemu.1
156 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-img.1
157 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-nbd.8
158 DOCS+=$(MANUAL_BUILDDIR)/interop/qemu-ga.8
159 ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy)
160 DOCS+=$(MANUAL_BUILDDIR)/tools/virtiofsd.1
162 DOCS+=$(MANUAL_BUILDDIR)/system/qemu-block-drivers.7
163 DOCS+=docs/interop/qemu-qmp-ref.html docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7
164 DOCS+=docs/interop/qemu-ga-ref.html docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7
165 DOCS+=$(MANUAL_BUILDDIR)/system/qemu-cpu-models.7
166 DOCS+=$(MANUAL_BUILDDIR)/index.html
168 DOCS+=$(MANUAL_BUILDDIR)/tools/virtfs-proxy-helper.1
170 ifdef CONFIG_TRACE_SYSTEMTAP
171 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-trace-stap.1
177 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet) BUILD_DIR=$(BUILD_DIR)
179 ifneq ($(wildcard config-host.mak),)
180 include $(SRC_PATH)/Makefile.objs
183 dummy := $(call unnest-vars,, \
184 storage-daemon-obj-y \
185 storage-daemon-obj-m \
189 include $(SRC_PATH)/tests/Makefile.include
191 all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) $(TOOLS) $(HELPERS-y) recurse-all modules
193 config-host.h: config-host.h-timestamp
194 config-host.h-timestamp: config-host.mak
196 TARGET_DIRS_RULES := $(foreach t, all fuzz clean install, $(addsuffix /$(t), $(TARGET_DIRS)))
198 SOFTMMU_ALL_RULES=$(filter %-softmmu/all, $(TARGET_DIRS_RULES))
199 $(SOFTMMU_ALL_RULES): $(authz-obj-y)
200 $(SOFTMMU_ALL_RULES): $(block-obj-y)
201 $(SOFTMMU_ALL_RULES): $(storage-daemon-obj-y)
202 $(SOFTMMU_ALL_RULES): $(chardev-obj-y)
203 $(SOFTMMU_ALL_RULES): $(crypto-obj-y)
204 $(SOFTMMU_ALL_RULES): $(io-obj-y)
205 $(SOFTMMU_ALL_RULES): $(qom-obj-y)
206 $(SOFTMMU_ALL_RULES): config-all-devices.mak
208 SOFTMMU_FUZZ_RULES=$(filter %-softmmu/fuzz, $(TARGET_DIRS_RULES))
209 $(SOFTMMU_FUZZ_RULES): $(authz-obj-y)
210 $(SOFTMMU_FUZZ_RULES): $(block-obj-y)
211 $(SOFTMMU_FUZZ_RULES): $(chardev-obj-y)
212 $(SOFTMMU_FUZZ_RULES): $(crypto-obj-y)
213 $(SOFTMMU_FUZZ_RULES): $(io-obj-y)
214 $(SOFTMMU_FUZZ_RULES): config-all-devices.mak
215 $(SOFTMMU_FUZZ_RULES): $(edk2-decompressed)
217 # meson: this is sub-optimal but going away after conversion
218 TARGET_DEPS = $(patsubst %,%-config-target.h, $(TARGET_DIRS))
219 TARGET_DEPS += $(patsubst %,%-config-devices.h, $(filter %-softmmu,$(TARGET_DIRS)))
220 TARGET_DEPS += $(patsubst %,libqemu-%.fa, $(TARGET_DIRS))
222 .PHONY: $(TARGET_DIRS_RULES)
223 # The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
224 # $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
225 $(TARGET_DIRS_RULES): $(TARGET_DEPS)
226 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" $(notdir $@),)
228 # LIBFDT_lib="": avoid breaking existing trees with objects requiring -fPIC
229 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_lib=""
230 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
231 DTC_CPPFLAGS=-I$(SRC_PATH)/dtc/libfdt
234 dtc/all: .git-submodule-status dtc/libfdt
235 $(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CPPFLAGS="$(DTC_CPPFLAGS)" CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(QEMU_LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt,)
237 dtc/%: .git-submodule-status
240 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
241 # Not overriding CFLAGS leads to mis-matches between compilation modes.
242 # Therefore we replicate some of the logic in the sub-makefile.
243 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
244 # no need to annoy QEMU developers with such things.
245 CAP_CFLAGS = $(patsubst -W%,,$(CFLAGS) $(QEMU_CFLAGS))
246 CAP_CFLAGS += -DCAPSTONE_USE_SYS_DYN_MEM
247 CAP_CFLAGS += -DCAPSTONE_HAS_ARM
248 CAP_CFLAGS += -DCAPSTONE_HAS_ARM64
249 CAP_CFLAGS += -DCAPSTONE_HAS_POWERPC
250 CAP_CFLAGS += -DCAPSTONE_HAS_X86
253 capstone/all: .git-submodule-status
254 $(call quiet-command,$(MAKE) -C $(SRC_PATH)/capstone CAPSTONE_SHARED=no BUILDDIR="$(BUILD_DIR)/capstone" CC="$(CC)" AR="$(AR)" LD="$(LD)" RANLIB="$(RANLIB)" CFLAGS="$(CAP_CFLAGS)" $(SUBDIR_MAKEFLAGS) $(BUILD_DIR)/capstone/$(LIBCAPSTONE))
257 slirp/all: .git-submodule-status
258 $(call quiet-command,$(MAKE) -C $(SRC_PATH)/slirp \
259 BUILD_DIR="$(BUILD_DIR)/slirp" \
260 PKG_CONFIG="$(PKG_CONFIG)" \
261 CC="$(CC)" AR="$(AR)" LD="$(LD)" RANLIB="$(RANLIB)" \
262 CFLAGS="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS="$(QEMU_LDFLAGS)")
264 $(filter %/all, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
265 $(qom-obj-y) block.syms qemu.syms
267 $(filter %/fuzz, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
268 $(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
270 ROM_DIRS = $(addprefix pc-bios/, $(ROMS))
271 ROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS)))
272 # Only keep -O and -g cflags
273 .PHONY: $(ROM_DIRS_RULES)
275 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" CFLAGS="$(filter -O% -g%,$(CFLAGS))" $(notdir $@),)
277 .PHONY: recurse-all recurse-clean recurse-install
278 recurse-all: $(addsuffix /all, $(TARGET_DIRS) $(ROM_DIRS))
279 recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
280 recurse-install: $(addsuffix /install, $(TARGET_DIRS))
281 $(addsuffix /install, $(TARGET_DIRS)): all
283 $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
284 $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
286 Makefile: $(version-obj-y)
288 ######################################################################
290 COMMON_LDADDS = libqemuutil.a
292 qemu-storage-daemon$(EXESUF): qemu-storage-daemon.o $(authz-obj-y) $(block-obj-y) $(crypto-obj-y) $(chardev-obj-y) $(io-obj-y) $(qom-obj-y) $(storage-daemon-obj-y) $(COMMON_LDADDS)
294 scsi/qemu-pr-helper$(EXESUF): scsi/qemu-pr-helper.o scsi/utils.o $(authz-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
296 scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
299 clean: recurse-clean ninja-clean clean-ctlist
300 -test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean
301 # avoid old build problems by removing potentially incorrect old files
302 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
303 find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f \
304 ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
305 ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
306 ! -path ./roms/edk2/BaseTools/Source/Python/UPT/Dll/sqlite3.dll \
308 rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) TAGS cscope.* *.pod *~ */*~
309 rm -f fsdev/*.pod scsi/*.pod
310 rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
312 VERSION ?= $(shell cat VERSION)
314 dist: qemu-$(VERSION).tar.bz2
317 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
319 define clean-manual =
320 rm -rf $(MANUAL_BUILDDIR)/$1/_static
321 rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
324 distclean: clean ninja-distclean
325 -test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean -g
326 rm -f config-host.mak config-host.h* $(DOCS)
327 rm -f tests/tcg/config-*.mak
328 rm -f config-all-disas.mak config.status
329 rm -f po/*.mo tests/qemu-iotests/common.env
330 rm -f roms/seabios/config.mak roms/vgabios/config.mak
331 rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
332 rm -rf meson-private meson-logs meson-info compile_commands.json
333 rm -f Makefile.ninja ninjatool ninjatool.stamp Makefile.mtest
335 rm -f linux-headers/asm
336 rm -f docs/version.texi
337 rm -f docs/interop/qemu-ga-qapi.texi docs/interop/qemu-qmp-qapi.texi
338 rm -f docs/interop/qemu-qmp-ref.7 docs/interop/qemu-ga-ref.7
339 rm -f docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
340 rm -f docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
341 rm -f docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
343 $(call clean-manual,devel)
344 $(call clean-manual,interop)
345 $(call clean-manual,specs)
346 $(call clean-manual,system)
347 $(call clean-manual,tools)
348 $(call clean-manual,user)
349 for d in $(TARGET_DIRS); do \
350 rm -rf $$d || exit 1 ; \
354 KEYMAPS=da en-gb et fr fr-ch is lt no pt-br sv \
355 ar de en-us fi fr-be hr it lv nl pl ru th \
356 de-ch es fo fr-ca hu ja mk pt sl tr \
360 BLOBS=bios.bin bios-256k.bin bios-microvm.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
361 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
362 vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
363 openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
364 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
365 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
366 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
367 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
368 efi-e1000e.rom efi-vmxnet3.rom \
370 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
371 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
372 s390-ccw.img s390-netboot.img \
373 slof.bin skiboot.lid \
375 u-boot.e500 u-boot-sam460-20100605.bin \
379 opensbi-riscv32-sifive_u-fw_jump.bin opensbi-riscv32-virt-fw_jump.bin \
380 opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
385 # Note that we manually filter-out the non-Sphinx documentation which
386 # is currently built into the docs/interop directory in the build tree,
387 # and also any sphinx-built manpages.
388 define install-manual =
389 for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
390 for f in $$(cd $(MANUAL_BUILDDIR) && find $1 -type f -a '!' '(' -name '*.[0-9]' -o -name 'qemu-*-qapi.*' -o -name 'qemu-*-ref.*' ')' ); do $(INSTALL_DATA) "$(MANUAL_BUILDDIR)/$$f" "$(DESTDIR)$(qemu_docdir)/$$f"; done
393 # Note that we deliberately do not install the "devel" manual: it is
394 # for QEMU developers, and not interesting to our users.
395 .PHONY: install-sphinxdocs
396 install-sphinxdocs: sphinxdocs
397 $(call install-manual,interop)
398 $(call install-manual,specs)
399 $(call install-manual,system)
400 $(call install-manual,tools)
401 $(call install-manual,user)
403 install-doc: $(DOCS) install-sphinxdocs
404 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
405 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/index.html "$(DESTDIR)$(qemu_docdir)"
406 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop"
407 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)/interop"
408 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)/interop"
410 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
411 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu.1 "$(DESTDIR)$(mandir)/man1"
412 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
413 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
414 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
415 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
416 ifeq ($(CONFIG_TOOLS),y)
417 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-img.1 "$(DESTDIR)$(mandir)/man1"
418 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
419 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
421 ifdef CONFIG_TRACE_SYSTEMTAP
422 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
424 ifeq ($(CONFIG_GUEST_AGENT),y)
425 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/interop/qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
426 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop"
427 $(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)/interop"
428 $(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)/interop"
429 $(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
433 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
434 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
436 ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy)
437 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/virtiofsd.1 "$(DESTDIR)$(mandir)/man1"
441 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
443 install-localstatedir:
445 ifeq ($(CONFIG_GUEST_AGENT),y)
446 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
450 ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
453 $(INSTALL_DIR) "$(DESTDIR)$(includedir)"
455 # Needed by "meson install"
457 install: all $(if $(BUILD_DOCS),install-doc) \
458 install-datadir install-localstatedir install-includedir \
461 $(call install-prog,$(TOOLS),$(DESTDIR)$(bindir))
463 ifneq ($(HELPERS-y),)
464 $(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
466 ifdef CONFIG_TRACE_SYSTEMTAP
467 $(INSTALL_PROG) "scripts/qemu-trace-stap" $(DESTDIR)$(bindir)
470 set -e; for x in $(BLOBS); do \
471 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
474 for s in $(ICON_SIZES); do \
475 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
476 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_$${s}.png \
477 "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
479 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
480 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
481 "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
482 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
483 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
484 "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
485 mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
486 $(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
487 "$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
491 ifeq ($(CONFIG_PLUGIN),y)
492 $(INSTALL_DATA) $(SRC_PATH)/include/qemu/qemu-plugin.h "$(DESTDIR)$(includedir)/qemu-plugin.h"
494 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
495 set -e; for x in $(KEYMAPS); do \
496 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
498 for d in $(TARGET_DIRS); do \
499 $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
504 MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
505 MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
506 TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
507 TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
509 docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
510 $(call quiet-command,(\
511 echo "@set VERSION $(VERSION)" && \
512 echo "@set CONFDIR $(qemu_confdir)" \
515 %.html: %.texi docs/version.texi
516 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
517 --html $< -o $@,"GEN","$@")
519 %.info: %.texi docs/version.texi
520 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
522 %.txt: %.texi docs/version.texi
523 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
524 --plaintext $< -o $@,"GEN","$@")
526 %.pdf: %.texi docs/version.texi
527 $(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
529 # Sphinx builds all its documentation at once in one invocation
530 # and handles "don't rebuild things unless necessary" itself.
531 # The '.doctrees' files are cached information to speed this up.
533 sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html \
534 $(MANUAL_BUILDDIR)/interop/index.html \
535 $(MANUAL_BUILDDIR)/specs/index.html \
536 $(MANUAL_BUILDDIR)/system/index.html \
537 $(MANUAL_BUILDDIR)/tools/index.html \
538 $(MANUAL_BUILDDIR)/user/index.html
540 # Canned command to build a single manual
541 # Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
542 # Note the use of different doctree for each (manual, builder) tuple;
543 # this works around Sphinx not handling parallel invocation on
544 # a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
545 build-manual = $(call quiet-command,CONFDIR="$(qemu_confdir)" $(SPHINX_BUILD) $(if $(V),,-q) $(SPHINX_WERROR) -b $2 -D version=$(VERSION) -D release="$(FULL_VERSION)" -d .doctrees/$1-$2 $(SRC_PATH)/docs/$1 $(MANUAL_BUILDDIR)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
546 # We assume all RST files in the manual's directory are used in it
547 manual-deps = $(wildcard $(SRC_PATH)/docs/$1/*.rst $(SRC_PATH)/docs/$1/*/*.rst) \
548 $(SRC_PATH)/docs/defs.rst.inc \
549 $(SRC_PATH)/docs/$1/conf.py $(SRC_PATH)/docs/conf.py \
550 $(SRC_PATH)/docs/sphinx/*.py
551 # Macro to write out the rule and dependencies for building manpages
552 # Usage: $(call define-manpage-rule,manualname,manpage1 manpage2...[,extradeps])
553 # 'extradeps' is optional, and specifies extra files (eg .hx files) that
554 # the manual page depends on.
555 define define-manpage-rule
556 $(call atomic,$(foreach manpage,$2,$(MANUAL_BUILDDIR)/$1/$(manpage)),$(call manual-deps,$1) $3)
557 $(call build-manual,$1,man)
560 $(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
561 $(call build-manual,devel,html)
563 $(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
564 $(call build-manual,interop,html)
566 $(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
567 $(call build-manual,specs,html)
569 $(MANUAL_BUILDDIR)/system/index.html: $(call manual-deps,system) $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/qemu-options.hx
570 $(call build-manual,system,html)
572 $(MANUAL_BUILDDIR)/tools/index.html: $(call manual-deps,tools) $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/docs/qemu-option-trace.rst.inc
573 $(call build-manual,tools,html)
575 $(MANUAL_BUILDDIR)/user/index.html: $(call manual-deps,user)
576 $(call build-manual,user,html)
578 $(call define-manpage-rule,interop,qemu-ga.8)
580 $(call define-manpage-rule,system,qemu.1 qemu-block-drivers.7 qemu-cpu-models.7)
582 $(call define-manpage-rule,tools,\
583 qemu-img.1 qemu-nbd.8 qemu-trace-stap.1\
584 virtiofsd.1 virtfs-proxy-helper.1,\
585 $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/docs/qemu-option-trace.rst.inc)
587 $(MANUAL_BUILDDIR)/index.html: $(SRC_PATH)/docs/index.html.in qemu-version.h
588 @mkdir -p "$(MANUAL_BUILDDIR)"
589 $(call quiet-command, sed "s|@@VERSION@@|${VERSION}|g" $< >$@, \
592 docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
595 docs/interop/qemu-ga-qapi.texi: qga/qga-qapi-doc.texi
598 html: docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
599 info: docs/interop/qemu-qmp-ref.info docs/interop/qemu-ga-ref.info
600 pdf: docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
601 txt: docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
603 docs/interop/qemu-ga-ref.dvi docs/interop/qemu-ga-ref.html \
604 docs/interop/qemu-ga-ref.info docs/interop/qemu-ga-ref.pdf \
605 docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7: \
606 docs/interop/qemu-ga-ref.texi docs/interop/qemu-ga-qapi.texi
608 docs/interop/qemu-qmp-ref.dvi docs/interop/qemu-qmp-ref.html \
609 docs/interop/qemu-qmp-ref.info docs/interop/qemu-qmp-ref.pdf \
610 docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7: \
611 docs/interop/qemu-qmp-ref.texi docs/interop/qemu-qmp-qapi.texi
613 $(filter %.1 %.7 %.8,$(DOCS)): scripts/texi2pod.pl
617 %/coverage-report.html:
619 $(call quiet-command,\
620 gcovr -r $(SRC_PATH) \
621 $(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
622 --object-directory $(BUILD_DIR) \
623 -p --html --html-details -o $@, \
624 "GEN", "coverage-report.html")
626 .PHONY: coverage-report
627 coverage-report: $(CURDIR)/reports/coverage/coverage-report.html
631 INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
633 nsisflags = -V2 -NOCD
635 ifneq ($(wildcard $(SRC_PATH)/dll),)
636 ifeq ($(ARCH),x86_64)
638 DLL_PATH = $(SRC_PATH)/dll/w64
642 DLL_PATH = $(SRC_PATH)/dll/w32
647 installer: $(INSTALLER)
649 INSTDIR=/tmp/qemu-nsis
651 $(INSTALLER): $(SRC_PATH)/qemu.nsi
652 $(MAKE) install DESTDIR=${INSTDIR}
654 (cd ${INSTDIR}/${bindir}; \
660 (cd ${INSTDIR}/${bindir}; \
661 for i in qemu-system-*.exe; do \
663 arch=$${arch#qemu-system-}; \
664 echo Section \"$$arch\" Section_$$arch; \
665 echo SetOutPath \"\$$INSTDIR\"; \
666 echo File \"\$${BINDIR}\\$$i\"; \
669 ) >${INSTDIR}/${bindir}/system-emulations.nsh
670 makensis $(nsisflags) \
671 $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
672 $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
673 -DBINDIR="${INSTDIR}/${bindir}" \
674 $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
675 -DSRCDIR="$(SRC_PATH)" \
676 -DOUTFILE="$(INSTALLER)" \
677 -DDISPLAYVERSION="$(VERSION)" \
681 $(SIGNCODE) $(INSTALLER)
685 # Add a dependency on the generated files, so that they are always
686 # rebuilt before other object files
687 ifneq ($(wildcard config-host.mak),)
688 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
689 Makefile: $(generated-files-y)
693 # Include automatically generated dependency files
694 # Dependencies in Makefile.objs files come from our recursive subdir rules
695 -include $(wildcard *.d tests/*.d)
697 include $(SRC_PATH)/tests/docker/Makefile.include
698 include $(SRC_PATH)/tests/vm/Makefile.include
700 print-help-run = printf " %-30s - %s\\n" "$1" "$2"
701 print-help = $(quiet-@)$(call print-help-run,$1,$2)
705 @echo 'Generic targets:'
706 $(call print-help,all,Build all)
708 $(call print-help,modules,Build all modules)
710 $(call print-help,dir/file.o,Build specified target only)
711 $(call print-help,install,Install QEMU, documentation and tools)
712 $(call print-help,ctags/TAGS,Generate tags file for editors)
713 $(call print-help,cscope,Generate cscope index)
714 $(call print-help,sparse,Run sparse on the QEMU source)
716 @$(if $(TARGET_DIRS), \
717 echo 'Architecture specific targets:'; \
718 $(foreach t, $(TARGET_DIRS), \
719 $(call print-help-run,$(t)/all,Build for $(t)); \
720 $(if $(CONFIG_FUZZ), \
721 $(if $(findstring softmmu,$(t)), \
722 $(call print-help-run,$(t)/fuzz,Build fuzzer for $(t)); \
725 @$(if $(HELPERS-y), \
726 echo 'Helper targets:'; \
727 $(foreach t, $(HELPERS-y), \
728 $(call print-help-run,$(t),Build $(shell basename $(t)));) \
731 echo 'Tools targets:'; \
732 $(foreach t, $(TOOLS), \
733 $(call print-help-run,$(t),Build $(shell basename $(t)) tool);) \
735 @echo 'Cleaning targets:'
736 $(call print-help,clean,Remove most generated files but keep the config)
737 $(call print-help,distclean,Remove all generated files)
738 $(call print-help,dist,Build a distributable tarball)
740 @echo 'Test targets:'
741 $(call print-help,check,Run all tests (check-help for details))
742 $(call print-help,docker,Help about targets running tests inside containers)
743 $(call print-help,vm-help,Help about targets running tests inside VM)
745 @echo 'Documentation targets:'
746 $(call print-help,html info pdf txt,Build documentation in specified format)
749 @echo 'Windows targets:'
750 $(call print-help,installer,Build NSIS-based installer for QEMU)
751 ifdef QEMU_GA_MSI_ENABLED
752 $(call print-help,msi,Build MSI-based installer for qemu-ga)
756 $(call print-help,$(MAKE) [targets],(quiet build, default))
757 $(call print-help,$(MAKE) V=1 [targets],(verbose build))