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