meson: plugins
[qemu/ar7.git] / Makefile
blobae0aa62082cc2c16269724730da5c76424fc6a6e
1 # Makefile for QEMU.
3 ifneq ($(words $(subst :, ,$(CURDIR))), 1)
4 $(error main directory cannot contain spaces nor colons)
5 endif
7 # Always point to the root of the build tree (needs GNU make).
8 BUILD_DIR=$(CURDIR)
10 # Before including a proper config-host.mak, assume we are in the source tree
11 SRC_PATH=.
13 UNCHECKED_GOALS := %clean TAGS cscope ctags dist \
14 html info pdf txt \
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.
21 all:
22 include config-host.mak
24 git-submodule-update:
26 .PHONY: git-submodule-update
28 git_module_status := $(shell \
29 cd '$(SRC_PATH)' && \
30 GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
31 echo $$?; \
34 ifeq (1,$(git_module_status))
35 ifeq (no,$(GIT_UPDATE))
36 git-submodule-update:
37 $(call quiet-command, \
38 echo && \
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)" && \
42 echo && \
43 exit 1)
44 else
45 git-submodule-update:
46 $(call quiet-command, \
47 (cd $(SRC_PATH) && GIT="$(GIT)" ./scripts/git-submodule.sh update $(GIT_SUBMODULES)), \
48 "GIT","$(GIT_SUBMODULES)")
49 endif
50 endif
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
60 clean-ctlist:
61 ninja-clean::
62 ninja-distclean::
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).
73 ifneq ($(MESON),)
74 Makefile.mtest: build.ninja scripts/mtest2make.py
75 $(MESON) introspect --tests | $(PYTHON) scripts/mtest2make.py > $@
76 -include Makefile.mtest
77 endif
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)
88 endif
89 endif
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)
94 CONFIG_ALL=y
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; \
102 else \
103 ./config.status; \
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
109 endif
111 else
112 config-host.mak:
113 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
114 @echo "Please call configure before running make!"
115 @exit 1
116 endif
117 endif
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
131 Makefile: ;
132 configure: ;
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 # Sphinx does not allow building manuals into the same directory as
142 # the source files, so if we're doing an in-tree QEMU build we must
143 # build the manuals into a subdirectory (and then install them from
144 # there for 'make install'). For an out-of-tree build we can just
145 # use the docs/ subdirectory in the build tree as normal.
146 ifeq ($(realpath $(SRC_PATH)),$(realpath .))
147 MANUAL_BUILDDIR := docs/built
148 else
149 MANUAL_BUILDDIR := docs
150 endif
152 ifdef BUILD_DOCS
153 DOCS+=$(MANUAL_BUILDDIR)/system/qemu.1
154 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-img.1
155 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-nbd.8
156 DOCS+=$(MANUAL_BUILDDIR)/interop/qemu-ga.8
157 ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy)
158 DOCS+=$(MANUAL_BUILDDIR)/tools/virtiofsd.1
159 endif
160 DOCS+=$(MANUAL_BUILDDIR)/system/qemu-block-drivers.7
161 DOCS+=docs/interop/qemu-qmp-ref.html docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7
162 DOCS+=docs/interop/qemu-ga-ref.html docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7
163 DOCS+=$(MANUAL_BUILDDIR)/system/qemu-cpu-models.7
164 DOCS+=$(MANUAL_BUILDDIR)/index.html
165 ifdef CONFIG_VIRTFS
166 DOCS+=$(MANUAL_BUILDDIR)/tools/virtfs-proxy-helper.1
167 endif
168 ifdef CONFIG_TRACE_SYSTEMTAP
169 DOCS+=$(MANUAL_BUILDDIR)/tools/qemu-trace-stap.1
170 endif
171 else
172 DOCS=
173 endif
175 SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet) BUILD_DIR=$(BUILD_DIR)
177 ifneq ($(wildcard config-host.mak),)
178 include $(SRC_PATH)/Makefile.objs
179 endif
181 include $(SRC_PATH)/tests/Makefile.include
183 all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) recurse-all modules
185 config-host.h: config-host.h-timestamp
186 config-host.h-timestamp: config-host.mak
188 TARGET_DIRS_RULES := $(foreach t, all fuzz clean install, $(addsuffix /$(t), $(TARGET_DIRS)))
190 SOFTMMU_ALL_RULES=$(filter %-softmmu/all, $(TARGET_DIRS_RULES))
191 $(SOFTMMU_ALL_RULES): $(authz-obj-y)
192 $(SOFTMMU_ALL_RULES): $(block-obj-y)
193 $(SOFTMMU_ALL_RULES): $(chardev-obj-y)
194 $(SOFTMMU_ALL_RULES): $(crypto-obj-y)
195 $(SOFTMMU_ALL_RULES): $(io-obj-y)
196 $(SOFTMMU_ALL_RULES): $(qom-obj-y)
197 $(SOFTMMU_ALL_RULES): config-all-devices.mak
199 SOFTMMU_FUZZ_RULES=$(filter %-softmmu/fuzz, $(TARGET_DIRS_RULES))
200 $(SOFTMMU_FUZZ_RULES): $(authz-obj-y)
201 $(SOFTMMU_FUZZ_RULES): $(block-obj-y)
202 $(SOFTMMU_FUZZ_RULES): $(chardev-obj-y)
203 $(SOFTMMU_FUZZ_RULES): $(crypto-obj-y)
204 $(SOFTMMU_FUZZ_RULES): $(io-obj-y)
205 $(SOFTMMU_FUZZ_RULES): config-all-devices.mak
206 $(SOFTMMU_FUZZ_RULES): $(edk2-decompressed)
208 # meson: this is sub-optimal but going away after conversion
209 TARGET_DEPS = $(patsubst %,%-config-target.h, $(TARGET_DIRS))
210 TARGET_DEPS += $(patsubst %,%-config-devices.h, $(filter %-softmmu,$(TARGET_DIRS)))
211 TARGET_DEPS += $(patsubst %,libqemu-%.fa, $(TARGET_DIRS))
213 .PHONY: $(TARGET_DIRS_RULES)
214 # The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
215 # $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
216 $(TARGET_DIRS_RULES): $(TARGET_DEPS)
217 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" $(notdir $@),)
219 # LIBFDT_lib="": avoid breaking existing trees with objects requiring -fPIC
220 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_lib=""
221 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
222 DTC_CPPFLAGS=-I$(SRC_PATH)/dtc/libfdt
224 .PHONY: dtc/all
225 dtc/all: .git-submodule-status dtc/libfdt
226 $(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,)
228 dtc/%: .git-submodule-status
229 @mkdir -p $@
231 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
232 # Not overriding CFLAGS leads to mis-matches between compilation modes.
233 # Therefore we replicate some of the logic in the sub-makefile.
234 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
235 # no need to annoy QEMU developers with such things.
236 CAP_CFLAGS = $(patsubst -W%,,$(CFLAGS) $(QEMU_CFLAGS))
237 CAP_CFLAGS += -DCAPSTONE_USE_SYS_DYN_MEM
238 CAP_CFLAGS += -DCAPSTONE_HAS_ARM
239 CAP_CFLAGS += -DCAPSTONE_HAS_ARM64
240 CAP_CFLAGS += -DCAPSTONE_HAS_POWERPC
241 CAP_CFLAGS += -DCAPSTONE_HAS_X86
243 .PHONY: capstone/all
244 capstone/all: .git-submodule-status
245 $(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))
247 .PHONY: slirp/all
248 slirp/all: .git-submodule-status
249 $(call quiet-command,$(MAKE) -C $(SRC_PATH)/slirp \
250 BUILD_DIR="$(BUILD_DIR)/slirp" \
251 PKG_CONFIG="$(PKG_CONFIG)" \
252 CC="$(CC)" AR="$(AR)" LD="$(LD)" RANLIB="$(RANLIB)" \
253 CFLAGS="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS="$(QEMU_LDFLAGS)")
255 $(filter %/all, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
256 $(qom-obj-y) block.syms qemu.syms
258 $(filter %/fuzz, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
259 $(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
261 ROM_DIRS = $(addprefix pc-bios/, $(ROMS))
262 ROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS)))
263 # Only keep -O and -g cflags
264 .PHONY: $(ROM_DIRS_RULES)
265 $(ROM_DIRS_RULES):
266 $(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" CFLAGS="$(filter -O% -g%,$(CFLAGS))" $(notdir $@),)
268 .PHONY: recurse-all recurse-clean recurse-install
269 recurse-all: $(addsuffix /all, $(TARGET_DIRS) $(ROM_DIRS))
270 recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
271 recurse-install: $(addsuffix /install, $(TARGET_DIRS))
272 $(addsuffix /install, $(TARGET_DIRS)): all
274 $(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
275 $(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
277 Makefile: $(version-obj-y)
279 ######################################################################
281 COMMON_LDADDS = libqemuutil.a
283 clean: recurse-clean ninja-clean clean-ctlist
284 -test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean
285 # avoid old build problems by removing potentially incorrect old files
286 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
287 find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f \
288 ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
289 ! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
290 ! -path ./roms/edk2/BaseTools/Source/Python/UPT/Dll/sqlite3.dll \
291 -exec rm {} +
292 rm -f TAGS cscope.* *.pod *~ */*~
293 rm -f fsdev/*.pod scsi/*.pod
294 rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
296 VERSION ?= $(shell cat VERSION)
298 dist: qemu-$(VERSION).tar.bz2
300 qemu-%.tar.bz2:
301 $(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
303 define clean-manual =
304 rm -rf $(MANUAL_BUILDDIR)/$1/_static
305 rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
306 endef
308 distclean: clean ninja-distclean
309 -test -f ninjatool && ./ninjatool $(if $(V),-v,) -t clean -g
310 rm -f config-host.mak config-host.h* $(DOCS)
311 rm -f tests/tcg/config-*.mak
312 rm -f config-all-disas.mak config.status
313 rm -f po/*.mo tests/qemu-iotests/common.env
314 rm -f roms/seabios/config.mak roms/vgabios/config.mak
315 rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
316 rm -rf meson-private meson-logs meson-info compile_commands.json
317 rm -f Makefile.ninja ninjatool ninjatool.stamp Makefile.mtest
318 rm -f config.log
319 rm -f linux-headers/asm
320 rm -f docs/version.texi
321 rm -f docs/interop/qemu-ga-qapi.texi docs/interop/qemu-qmp-qapi.texi
322 rm -f docs/interop/qemu-qmp-ref.7 docs/interop/qemu-ga-ref.7
323 rm -f docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
324 rm -f docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
325 rm -f docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
326 rm -rf .doctrees
327 $(call clean-manual,devel)
328 $(call clean-manual,interop)
329 $(call clean-manual,specs)
330 $(call clean-manual,system)
331 $(call clean-manual,tools)
332 $(call clean-manual,user)
333 for d in $(TARGET_DIRS); do \
334 rm -rf $$d || exit 1 ; \
335 done
336 rm -Rf .sdk
338 KEYMAPS=da en-gb et fr fr-ch is lt no pt-br sv \
339 ar de en-us fi fr-be hr it lv nl pl ru th \
340 de-ch es fo fr-ca hu ja mk pt sl tr \
341 bepo cz
343 ifdef INSTALL_BLOBS
344 BLOBS=bios.bin bios-256k.bin bios-microvm.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
345 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
346 vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
347 openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
348 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
349 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
350 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
351 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
352 efi-e1000e.rom efi-vmxnet3.rom \
353 qemu-nsis.bmp \
354 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
355 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
356 s390-ccw.img s390-netboot.img \
357 slof.bin skiboot.lid \
358 palcode-clipper \
359 u-boot.e500 u-boot-sam460-20100605.bin \
360 qemu_vga.ndrv \
361 edk2-licenses.txt \
362 hppa-firmware.img \
363 opensbi-riscv32-sifive_u-fw_jump.bin opensbi-riscv32-virt-fw_jump.bin \
364 opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
365 else
366 BLOBS=
367 endif
369 # Note that we manually filter-out the non-Sphinx documentation which
370 # is currently built into the docs/interop directory in the build tree,
371 # and also any sphinx-built manpages.
372 define install-manual =
373 for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
374 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
375 endef
377 # Note that we deliberately do not install the "devel" manual: it is
378 # for QEMU developers, and not interesting to our users.
379 .PHONY: install-sphinxdocs
380 install-sphinxdocs: sphinxdocs
381 $(call install-manual,interop)
382 $(call install-manual,specs)
383 $(call install-manual,system)
384 $(call install-manual,tools)
385 $(call install-manual,user)
387 install-doc: $(DOCS) install-sphinxdocs
388 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
389 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/index.html "$(DESTDIR)$(qemu_docdir)"
390 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop"
391 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)/interop"
392 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)/interop"
393 ifdef CONFIG_POSIX
394 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
395 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu.1 "$(DESTDIR)$(mandir)/man1"
396 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
397 $(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
398 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
399 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/system/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
400 ifeq ($(CONFIG_TOOLS),y)
401 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-img.1 "$(DESTDIR)$(mandir)/man1"
402 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
403 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
404 endif
405 ifdef CONFIG_TRACE_SYSTEMTAP
406 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
407 endif
408 ifeq ($(CONFIG_GUEST_AGENT),y)
409 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/interop/qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
410 $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/interop"
411 $(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)/interop"
412 $(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)/interop"
413 $(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
414 endif
415 endif
416 ifdef CONFIG_VIRTFS
417 $(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
418 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
419 endif
420 ifeq ($(CONFIG_LINUX)$(CONFIG_SECCOMP)$(CONFIG_LIBCAP_NG),yyy)
421 $(INSTALL_DATA) $(MANUAL_BUILDDIR)/tools/virtiofsd.1 "$(DESTDIR)$(mandir)/man1"
422 endif
424 install-datadir:
425 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
427 install-localstatedir:
428 ifdef CONFIG_POSIX
429 ifeq ($(CONFIG_GUEST_AGENT),y)
430 $(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
431 endif
432 endif
434 ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
436 # Needed by "meson install"
437 export DESTDIR
438 install: all $(if $(BUILD_DOCS),install-doc) \
439 install-datadir install-localstatedir \
440 recurse-install
441 ifdef CONFIG_TRACE_SYSTEMTAP
442 $(INSTALL_PROG) "scripts/qemu-trace-stap" $(DESTDIR)$(bindir)
443 endif
444 ifneq ($(BLOBS),)
445 set -e; for x in $(BLOBS); do \
446 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
447 done
448 endif
449 for s in $(ICON_SIZES); do \
450 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
451 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_$${s}.png \
452 "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
453 done; \
454 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
455 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
456 "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
457 mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
458 $(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
459 "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
460 mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
461 $(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
462 "$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
463 ifdef CONFIG_GTK
464 $(MAKE) -C po $@
465 endif
466 $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
467 set -e; for x in $(KEYMAPS); do \
468 $(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
469 done
470 for d in $(TARGET_DIRS); do \
471 $(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
472 done
474 # documentation
475 MAKEINFO=makeinfo
476 MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
477 MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
478 TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
479 TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
481 docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
482 $(call quiet-command,(\
483 echo "@set VERSION $(VERSION)" && \
484 echo "@set CONFDIR $(qemu_confdir)" \
485 )> $@,"GEN","$@")
487 %.html: %.texi docs/version.texi
488 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
489 --html $< -o $@,"GEN","$@")
491 %.info: %.texi docs/version.texi
492 $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
494 %.txt: %.texi docs/version.texi
495 $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
496 --plaintext $< -o $@,"GEN","$@")
498 %.pdf: %.texi docs/version.texi
499 $(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
501 # Sphinx builds all its documentation at once in one invocation
502 # and handles "don't rebuild things unless necessary" itself.
503 # The '.doctrees' files are cached information to speed this up.
504 .PHONY: sphinxdocs
505 sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html \
506 $(MANUAL_BUILDDIR)/interop/index.html \
507 $(MANUAL_BUILDDIR)/specs/index.html \
508 $(MANUAL_BUILDDIR)/system/index.html \
509 $(MANUAL_BUILDDIR)/tools/index.html \
510 $(MANUAL_BUILDDIR)/user/index.html
512 # Canned command to build a single manual
513 # Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
514 # Note the use of different doctree for each (manual, builder) tuple;
515 # this works around Sphinx not handling parallel invocation on
516 # a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
517 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")
518 # We assume all RST files in the manual's directory are used in it
519 manual-deps = $(wildcard $(SRC_PATH)/docs/$1/*.rst $(SRC_PATH)/docs/$1/*/*.rst) \
520 $(SRC_PATH)/docs/defs.rst.inc \
521 $(SRC_PATH)/docs/$1/conf.py $(SRC_PATH)/docs/conf.py \
522 $(SRC_PATH)/docs/sphinx/*.py
523 # Macro to write out the rule and dependencies for building manpages
524 # Usage: $(call define-manpage-rule,manualname,manpage1 manpage2...[,extradeps])
525 # 'extradeps' is optional, and specifies extra files (eg .hx files) that
526 # the manual page depends on.
527 define define-manpage-rule
528 $(call atomic,$(foreach manpage,$2,$(MANUAL_BUILDDIR)/$1/$(manpage)),$(call manual-deps,$1) $3)
529 $(call build-manual,$1,man)
530 endef
532 $(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
533 $(call build-manual,devel,html)
535 $(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
536 $(call build-manual,interop,html)
538 $(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
539 $(call build-manual,specs,html)
541 $(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
542 $(call build-manual,system,html)
544 $(MANUAL_BUILDDIR)/tools/index.html: $(call manual-deps,tools) $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/docs/qemu-option-trace.rst.inc
545 $(call build-manual,tools,html)
547 $(MANUAL_BUILDDIR)/user/index.html: $(call manual-deps,user)
548 $(call build-manual,user,html)
550 $(call define-manpage-rule,interop,qemu-ga.8)
552 $(call define-manpage-rule,system,qemu.1 qemu-block-drivers.7 qemu-cpu-models.7)
554 $(call define-manpage-rule,tools,\
555 qemu-img.1 qemu-nbd.8 qemu-trace-stap.1\
556 virtiofsd.1 virtfs-proxy-helper.1,\
557 $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/docs/qemu-option-trace.rst.inc)
559 $(MANUAL_BUILDDIR)/index.html: $(SRC_PATH)/docs/index.html.in qemu-version.h
560 @mkdir -p "$(MANUAL_BUILDDIR)"
561 $(call quiet-command, sed "s|@@VERSION@@|${VERSION}|g" $< >$@, \
562 "GEN","$@")
564 docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
565 @cp -p $< $@
567 docs/interop/qemu-ga-qapi.texi: qga/qga-qapi-doc.texi
568 @cp -p $< $@
570 html: docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
571 info: docs/interop/qemu-qmp-ref.info docs/interop/qemu-ga-ref.info
572 pdf: docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
573 txt: docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
575 docs/interop/qemu-ga-ref.dvi docs/interop/qemu-ga-ref.html \
576 docs/interop/qemu-ga-ref.info docs/interop/qemu-ga-ref.pdf \
577 docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7: \
578 docs/interop/qemu-ga-ref.texi docs/interop/qemu-ga-qapi.texi
580 docs/interop/qemu-qmp-ref.dvi docs/interop/qemu-qmp-ref.html \
581 docs/interop/qemu-qmp-ref.info docs/interop/qemu-qmp-ref.pdf \
582 docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7: \
583 docs/interop/qemu-qmp-ref.texi docs/interop/qemu-qmp-qapi.texi
585 $(filter %.1 %.7 %.8,$(DOCS)): scripts/texi2pod.pl
587 # Reports/Analysis
589 %/coverage-report.html:
590 @mkdir -p $*
591 $(call quiet-command,\
592 gcovr -r $(SRC_PATH) \
593 $(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
594 --object-directory $(BUILD_DIR) \
595 -p --html --html-details -o $@, \
596 "GEN", "coverage-report.html")
598 .PHONY: coverage-report
599 coverage-report: $(CURDIR)/reports/coverage/coverage-report.html
601 ifdef CONFIG_WIN32
603 INSTALLER = qemu-setup-$(VERSION)$(EXESUF)
605 nsisflags = -V2 -NOCD
607 ifneq ($(wildcard $(SRC_PATH)/dll),)
608 ifeq ($(ARCH),x86_64)
609 # 64 bit executables
610 DLL_PATH = $(SRC_PATH)/dll/w64
611 nsisflags += -DW64
612 else
613 # 32 bit executables
614 DLL_PATH = $(SRC_PATH)/dll/w32
615 endif
616 endif
618 .PHONY: installer
619 installer: $(INSTALLER)
621 INSTDIR=/tmp/qemu-nsis
623 $(INSTALLER): $(SRC_PATH)/qemu.nsi
624 $(MAKE) install DESTDIR=${INSTDIR}
625 ifdef SIGNCODE
626 (cd ${INSTDIR}/${bindir}; \
627 for i in *.exe; do \
628 $(SIGNCODE) $${i}; \
629 done \
631 endif # SIGNCODE
632 (cd ${INSTDIR}/${bindir}; \
633 for i in qemu-system-*.exe; do \
634 arch=$${i%.exe}; \
635 arch=$${arch#qemu-system-}; \
636 echo Section \"$$arch\" Section_$$arch; \
637 echo SetOutPath \"\$$INSTDIR\"; \
638 echo File \"\$${BINDIR}\\$$i\"; \
639 echo SectionEnd; \
640 done \
641 ) >${INSTDIR}/${bindir}/system-emulations.nsh
642 makensis $(nsisflags) \
643 $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
644 $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
645 -DBINDIR="${INSTDIR}/${bindir}" \
646 $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
647 -DSRCDIR="$(SRC_PATH)" \
648 -DOUTFILE="$(INSTALLER)" \
649 -DDISPLAYVERSION="$(VERSION)" \
650 $(SRC_PATH)/qemu.nsi
651 rm -r ${INSTDIR}
652 ifdef SIGNCODE
653 $(SIGNCODE) $(INSTALLER)
654 endif # SIGNCODE
655 endif # CONFIG_WIN
657 # Add a dependency on the generated files, so that they are always
658 # rebuilt before other object files
659 ifneq ($(wildcard config-host.mak),)
660 ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
661 Makefile: $(generated-files-y)
662 endif
663 endif
665 # Include automatically generated dependency files
666 # Dependencies in Makefile.objs files come from our recursive subdir rules
667 -include $(wildcard *.d tests/*.d)
669 include $(SRC_PATH)/tests/docker/Makefile.include
670 include $(SRC_PATH)/tests/vm/Makefile.include
672 print-help-run = printf " %-30s - %s\\n" "$1" "$2"
673 print-help = $(quiet-@)$(call print-help-run,$1,$2)
675 .PHONY: help
676 help:
677 @echo 'Generic targets:'
678 $(call print-help,all,Build all)
679 ifdef CONFIG_MODULES
680 $(call print-help,modules,Build all modules)
681 endif
682 $(call print-help,dir/file.o,Build specified target only)
683 $(call print-help,install,Install QEMU, documentation and tools)
684 $(call print-help,ctags/TAGS,Generate tags file for editors)
685 $(call print-help,cscope,Generate cscope index)
686 $(call print-help,sparse,Run sparse on the QEMU source)
687 @echo ''
688 @$(if $(TARGET_DIRS), \
689 echo 'Architecture specific targets:'; \
690 $(foreach t, $(TARGET_DIRS), \
691 $(call print-help-run,$(t)/all,Build for $(t)); \
692 $(if $(CONFIG_FUZZ), \
693 $(if $(findstring softmmu,$(t)), \
694 $(call print-help-run,$(t)/fuzz,Build fuzzer for $(t)); \
695 ))) \
696 echo '')
697 @echo 'Cleaning targets:'
698 $(call print-help,clean,Remove most generated files but keep the config)
699 $(call print-help,distclean,Remove all generated files)
700 $(call print-help,dist,Build a distributable tarball)
701 @echo ''
702 @echo 'Test targets:'
703 $(call print-help,check,Run all tests (check-help for details))
704 $(call print-help,docker,Help about targets running tests inside containers)
705 $(call print-help,vm-help,Help about targets running tests inside VM)
706 @echo ''
707 @echo 'Documentation targets:'
708 $(call print-help,html info pdf txt,Build documentation in specified format)
709 @echo ''
710 ifdef CONFIG_WIN32
711 @echo 'Windows targets:'
712 $(call print-help,installer,Build NSIS-based installer for QEMU)
713 ifdef QEMU_GA_MSI_ENABLED
714 $(call print-help,msi,Build MSI-based installer for qemu-ga)
715 endif
716 @echo ''
717 endif
718 $(call print-help,$(MAKE) [targets],(quiet build, default))
719 $(call print-help,$(MAKE) V=1 [targets],(verbose build))