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-
%
21 # All following code might depend on configuration variables
22 ifneq ($(wildcard config-host.mak
),)
23 # Put the all: rule here so that config-host.mak can contain dependencies.
25 include config-host.mak
29 .PHONY
: git-submodule-update
31 git_module_status
:= $(shell \
33 GIT
="$(GIT)" .
/scripts
/git-submodule.sh status
$(GIT_SUBMODULES
); \
37 ifeq (1,$(git_module_status
))
38 ifeq (no
,$(GIT_UPDATE
))
40 $(call quiet-command
, \
42 echo
"GIT submodule checkout is out of date. Please run" && \
43 echo
" scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \
44 echo
"from the source directory checkout $(SRC_PATH)" && \
49 $(call quiet-command
, \
50 (cd
$(SRC_PATH
) && GIT
="$(GIT)" .
/scripts
/git-submodule.sh update
$(GIT_SUBMODULES
)), \
51 "GIT","$(GIT_SUBMODULES)")
55 .git-submodule-status
: git-submodule-update config-host.mak
57 # Check that we're not trying to do an out-of-tree build from
58 # a tree that's been used for an in-tree build.
59 ifneq ($(realpath
$(SRC_PATH
)),$(realpath .
))
60 ifneq ($(wildcard $(SRC_PATH
)/config-host.mak
),)
61 $(error This is an out of tree build but your source tree
($(SRC_PATH
)) \
62 seems to have been used for an in-tree build. You can fix this by running \
63 "$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree
)
67 CONFIG_SOFTMMU
:= $(if
$(filter %-softmmu
,$(TARGET_DIRS
)),y
)
68 CONFIG_USER_ONLY
:= $(if
$(filter %-user
,$(TARGET_DIRS
)),y
)
69 CONFIG_XEN
:= $(CONFIG_XEN_BACKEND
)
71 -include config-all-devices.mak
72 -include config-all-disas.mak
74 config-host.mak
: $(SRC_PATH
)/configure
$(SRC_PATH
)/pc-bios
$(SRC_PATH
)/VERSION
75 @echo
$@ is out-of-date
, running configure
78 # Force configure to re-run if the API symbols are updated
79 ifeq ($(CONFIG_PLUGIN
),y
)
80 config-host.mak
: $(SRC_PATH
)/plugins
/qemu-plugins.symbols
85 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
86 @echo
"Please call configure before running make!"
91 include $(SRC_PATH
)/rules.mak
93 # lor is defined in rules.mak
94 CONFIG_BLOCK
:= $(call lor
,$(CONFIG_SOFTMMU
),$(CONFIG_TOOLS
))
96 # Create QEMU_PKGVERSION and FULL_VERSION strings
97 # If PKGVERSION is set, use that; otherwise get version and -dirty status from git
98 QEMU_PKGVERSION
:= $(if
$(PKGVERSION
),$(PKGVERSION
),$(shell \
100 if
test -e .git
; then \
101 git describe
--match
'v*' 2>/dev
/null | tr
-d
'\n'; \
102 if
! git diff-index
--quiet HEAD
&>/dev
/null
; then \
107 # Either "version (pkgversion)", or just "version" if pkgversion not set
108 FULL_VERSION
:= $(if
$(QEMU_PKGVERSION
),$(VERSION
) ($(QEMU_PKGVERSION
)),$(VERSION
))
110 generated-files-y
= qemu-version.h config-host.h qemu-options.def
112 GENERATED_QAPI_FILES
= qapi
/qapi-builtin-types.h qapi
/qapi-builtin-types.c
113 GENERATED_QAPI_FILES
+= qapi
/qapi-types.h qapi
/qapi-types.c
114 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.h
)
115 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.c
)
116 GENERATED_QAPI_FILES
+= qapi
/qapi-builtin-visit.h qapi
/qapi-builtin-visit.c
117 GENERATED_QAPI_FILES
+= qapi
/qapi-visit.h qapi
/qapi-visit.c
118 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.h
)
119 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.c
)
120 GENERATED_QAPI_FILES
+= qapi
/qapi-init-commands.h qapi
/qapi-init-commands.c
121 GENERATED_QAPI_FILES
+= qapi
/qapi-commands.h qapi
/qapi-commands.c
122 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.h
)
123 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.c
)
124 GENERATED_QAPI_FILES
+= qapi
/qapi-emit-events.h qapi
/qapi-emit-events.c
125 GENERATED_QAPI_FILES
+= qapi
/qapi-events.h qapi
/qapi-events.c
126 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.h
)
127 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.c
)
128 GENERATED_QAPI_FILES
+= qapi
/qapi-introspect.c qapi
/qapi-introspect.h
129 GENERATED_QAPI_FILES
+= qapi
/qapi-doc.texi
131 generated-files-y
+= $(GENERATED_QAPI_FILES
)
133 generated-files-y
+= trace
/generated-tcg-tracers.h
135 generated-files-y
+= trace
/generated-helpers-wrappers.h
136 generated-files-y
+= trace
/generated-helpers.h
137 generated-files-y
+= trace
/generated-helpers.c
139 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.h
140 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.c
142 generated-files-y
+= module_block.h
144 TRACE_HEADERS
= trace-root.h
$(trace-events-subdirs
:%=%/trace.h
)
145 TRACE_SOURCES
= trace-root.c
$(trace-events-subdirs
:%=%/trace.c
)
147 ifdef CONFIG_TRACE_DTRACE
148 TRACE_HEADERS
+= trace-dtrace-root.h
$(trace-events-subdirs
:%=%/trace-dtrace.h
)
149 TRACE_DTRACE
+= trace-dtrace-root.dtrace
$(trace-events-subdirs
:%=%/trace-dtrace.dtrace
)
151 ifdef CONFIG_TRACE_UST
152 TRACE_HEADERS
+= trace-ust-root.h
$(trace-events-subdirs
:%=%/trace-ust.h
)
155 generated-files-y
+= $(TRACE_HEADERS
)
156 generated-files-y
+= $(TRACE_SOURCES
)
157 generated-files-y
+= $(BUILD_DIR
)/trace-events-all
158 generated-files-y
+= .git-submodule-status
160 trace-group-name
= $(shell dirname
$1 | sed
-e
's/[^a-zA-Z0-9]/_/g')
162 tracetool-y
= $(SRC_PATH
)/scripts
/tracetool.py
163 tracetool-y
+= $(shell find
$(SRC_PATH
)/scripts
/tracetool
-name
"*.py")
165 %/trace.h
: %/trace.h-timestamp
166 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
167 %/trace.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
168 $(call quiet-command
,$(TRACETOOL
) \
169 --group
=$(call trace-group-name
,$@
) \
171 --backends
=$(TRACE_BACKENDS
) \
172 $< > $@
,"GEN","$(@:%-timestamp=%)")
174 %/trace.c
: %/trace.c-timestamp
175 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
176 %/trace.c-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
177 $(call quiet-command
,$(TRACETOOL
) \
178 --group
=$(call trace-group-name
,$@
) \
180 --backends
=$(TRACE_BACKENDS
) \
181 $< > $@
,"GEN","$(@:%-timestamp=%)")
183 %/trace-ust.h
: %/trace-ust.h-timestamp
184 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
185 %/trace-ust.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
186 $(call quiet-command
,$(TRACETOOL
) \
187 --group
=$(call trace-group-name
,$@
) \
188 --format
=ust-events-h \
189 --backends
=$(TRACE_BACKENDS
) \
190 $< > $@
,"GEN","$(@:%-timestamp=%)")
192 %/trace-dtrace.dtrace
: %/trace-dtrace.dtrace-timestamp
193 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
194 %/trace-dtrace.dtrace-timestamp
: $(SRC_PATH
)/%/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
195 $(call quiet-command
,$(TRACETOOL
) \
196 --group
=$(call trace-group-name
,$@
) \
198 --backends
=$(TRACE_BACKENDS
) \
199 $< > $@
,"GEN","$(@:%-timestamp=%)")
201 %/trace-dtrace.h
: %/trace-dtrace.dtrace
$(tracetool-y
)
202 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
204 %/trace-dtrace.o
: %/trace-dtrace.dtrace
$(tracetool-y
)
207 trace-root.h
: trace-root.h-timestamp
208 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
209 trace-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
210 $(call quiet-command
,$(TRACETOOL
) \
213 --backends
=$(TRACE_BACKENDS
) \
214 $< > $@
,"GEN","$(@:%-timestamp=%)")
216 trace-root.c
: trace-root.c-timestamp
217 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
218 trace-root.c-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
219 $(call quiet-command
,$(TRACETOOL
) \
222 --backends
=$(TRACE_BACKENDS
) \
223 $< > $@
,"GEN","$(@:%-timestamp=%)")
225 trace-ust-root.h
: trace-ust-root.h-timestamp
226 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
227 trace-ust-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
228 $(call quiet-command
,$(TRACETOOL
) \
230 --format
=ust-events-h \
231 --backends
=$(TRACE_BACKENDS
) \
232 $< > $@
,"GEN","$(@:%-timestamp=%)")
234 trace-ust-all.h
: trace-ust-all.h-timestamp
235 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
236 trace-ust-all.h-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
237 $(call quiet-command
,$(TRACETOOL
) \
239 --format
=ust-events-h \
240 --backends
=$(TRACE_BACKENDS
) \
241 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
243 trace-ust-all.c
: trace-ust-all.c-timestamp
244 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
245 trace-ust-all.c-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
246 $(call quiet-command
,$(TRACETOOL
) \
248 --format
=ust-events-c \
249 --backends
=$(TRACE_BACKENDS
) \
250 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
252 trace-dtrace-root.dtrace
: trace-dtrace-root.dtrace-timestamp
253 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
254 trace-dtrace-root.dtrace-timestamp
: $(SRC_PATH
)/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
255 $(call quiet-command
,$(TRACETOOL
) \
258 --backends
=$(TRACE_BACKENDS
) \
259 $< > $@
,"GEN","$(@:%-timestamp=%)")
261 trace-dtrace-root.h
: trace-dtrace-root.dtrace
262 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
264 trace-dtrace-root.o
: trace-dtrace-root.dtrace
266 KEYCODEMAP_GEN
= $(SRC_PATH
)/ui
/keycodemapdb
/tools
/keymap-gen
267 KEYCODEMAP_CSV
= $(SRC_PATH
)/ui
/keycodemapdb
/data
/keymaps.csv
270 ui
/input-keymap-atset1-to-qcode.c \
271 ui
/input-keymap-linux-to-qcode.c \
272 ui
/input-keymap-qcode-to-atset1.c \
273 ui
/input-keymap-qcode-to-atset2.c \
274 ui
/input-keymap-qcode-to-atset3.c \
275 ui
/input-keymap-qcode-to-linux.c \
276 ui
/input-keymap-qcode-to-qnum.c \
277 ui
/input-keymap-qcode-to-sun.c \
278 ui
/input-keymap-qnum-to-qcode.c \
279 ui
/input-keymap-usb-to-qcode.c \
280 ui
/input-keymap-win32-to-qcode.c \
281 ui
/input-keymap-x11-to-qcode.c \
282 ui
/input-keymap-xorgevdev-to-qcode.c \
283 ui
/input-keymap-xorgkbd-to-qcode.c \
284 ui
/input-keymap-xorgxquartz-to-qcode.c \
285 ui
/input-keymap-xorgxwin-to-qcode.c \
286 ui
/input-keymap-osx-to-qcode.c \
289 generated-files-
$(CONFIG_SOFTMMU
) += $(KEYCODEMAP_FILES
)
291 ui
/input-keymap-
%.c
: $(KEYCODEMAP_GEN
) $(KEYCODEMAP_CSV
) $(SRC_PATH
)/ui
/Makefile.objs
292 $(call quiet-command
,\
293 stem
=$* && src
=$${stem
%-to-
*} dst
=$${stem
#*-to-} && \
294 test -e
$(KEYCODEMAP_GEN
) && \
295 $(PYTHON
) $(KEYCODEMAP_GEN
) \
297 --varname qemu_input_map_
$${src}_to_
$${dst} \
298 code-map
$(KEYCODEMAP_CSV
) $${src} $${dst} \
299 > $@ ||
rm -f
$@
, "GEN", "$@")
301 $(KEYCODEMAP_GEN
): .git-submodule-status
302 $(KEYCODEMAP_CSV
): .git-submodule-status
304 edk2-decompressed
= $(basename $(wildcard pc-bios
/edk2-
*.fd.bz2
))
305 pc-bios
/edk2-
%.fd
: pc-bios
/edk2-
%.fd.bz2
306 $(call quiet-command
,bzip2
-d
-c
$< > $@
,"BUNZIP2",$<)
308 # Don't try to regenerate Makefile or configure
309 # We don't generate any of them
313 .PHONY
: all clean cscope
distclean html
info install install-doc \
314 pdf txt recurse-all
dist msi FORCE
316 $(call set-vpath
, $(SRC_PATH
))
318 LIBS
+=-lz
$(LIBS_TOOLS
)
323 HELPERS-
$(call land
,$(CONFIG_SOFTMMU
),$(CONFIG_LINUX
)) = qemu-bridge-helper
$(EXESUF
)
325 ifeq ($(CONFIG_LINUX
)$(CONFIG_VIRGL
)$(CONFIG_GBM
)$(CONFIG_TOOLS
),yyyy
)
326 HELPERS-y
+= vhost-user-gpu
$(EXESUF
)
327 vhost-user-json-y
+= contrib
/vhost-user-gpu
/50-qemu-gpu.json
330 # Sphinx does not allow building manuals into the same directory as
331 # the source files, so if we're doing an in-tree QEMU build we must
332 # build the manuals into a subdirectory (and then install them from
333 # there for 'make install'). For an out-of-tree build we can just
334 # use the docs/ subdirectory in the build tree as normal.
335 ifeq ($(realpath
$(SRC_PATH
)),$(realpath .
))
336 MANUAL_BUILDDIR
:= docs
/built
338 MANUAL_BUILDDIR
:= docs
342 DOCS
=qemu-doc.html qemu-doc.txt qemu
.1 qemu-img
.1
343 DOCS
+=$(MANUAL_BUILDDIR
)/interop
/qemu-nbd
.8
344 DOCS
+=$(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8
345 DOCS
+=docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7
346 DOCS
+=docs
/interop
/qemu-ga-ref.html docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7
347 DOCS
+=docs
/qemu-block-drivers
.7
348 DOCS
+=docs
/qemu-cpu-models
.7
349 DOCS
+=$(MANUAL_BUILDDIR
)/index.html
351 DOCS
+=fsdev
/virtfs-proxy-helper
.1
353 ifdef CONFIG_TRACE_SYSTEMTAP
354 DOCS
+=scripts
/qemu-trace-stap
.1
360 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
--quiet
) BUILD_DIR
=$(BUILD_DIR
)
361 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(filter %-softmmu
, $(TARGET_DIRS
)))
362 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %.d
, $(SUBDIR_DEVICES_MAK
))
364 ifeq ($(SUBDIR_DEVICES_MAK
),)
365 config-all-devices.mak
: config-host.mak
366 $(call quiet-command
,echo
'# no devices' > $@
,"GEN","$@")
368 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
) config-host.mak
369 $(call quiet-command
, sed
-n \
370 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
371 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
375 -include $(SUBDIR_DEVICES_MAK_DEP
)
377 # This has to be kept in sync with Kconfig.host.
379 $(CONFIG_MINIKCONF_MODE
) \
380 $@
$*/config-devices.mak.d
$< $(MINIKCONF_INPUTS
) \
381 CONFIG_KVM
=$(CONFIG_KVM
) \
382 CONFIG_SPICE
=$(CONFIG_SPICE
) \
383 CONFIG_IVSHMEM
=$(CONFIG_IVSHMEM
) \
384 CONFIG_TPM
=$(CONFIG_TPM
) \
385 CONFIG_XEN
=$(CONFIG_XEN
) \
386 CONFIG_OPENGL
=$(CONFIG_OPENGL
) \
387 CONFIG_X11
=$(CONFIG_X11
) \
388 CONFIG_VHOST_USER
=$(CONFIG_VHOST_USER
) \
389 CONFIG_VHOST_KERNEL
=$(CONFIG_VHOST_KERNEL
) \
390 CONFIG_VIRTFS
=$(CONFIG_VIRTFS
) \
391 CONFIG_LINUX
=$(CONFIG_LINUX
) \
392 CONFIG_PVRDMA
=$(CONFIG_PVRDMA
)
394 MINIKCONF_INPUTS
= $(SRC_PATH
)/Kconfig.host
$(SRC_PATH
)/hw
/Kconfig \
395 $(wildcard $(SRC_PATH
)/hw
/*/Kconfig
)
396 MINIKCONF
= $(PYTHON
) $(SRC_PATH
)/scripts
/minikconf.py \
398 $(SUBDIR_DEVICES_MAK
): %/config-devices.mak
: default-configs
/%.mak
$(MINIKCONF_INPUTS
) $(BUILD_DIR
)/config-host.mak
399 $(call quiet-command
, $(MINIKCONF
) $(MINIKCONF_ARGS
) > $@.tmp
, "GEN", "$@.tmp")
400 $(call quiet-command
, if
test -f
$@
; then \
401 if cmp
-s
$@.old
$@
; then \
405 if
test -f
$@.old
; then \
406 echo
"WARNING: $@ (user modified) out of date.";\
408 echo
"WARNING: $@ out of date.";\
410 echo
"Run \"$(MAKE) defconfig\" to regenerate."; \
419 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
421 ifneq ($(wildcard config-host.mak
),)
422 include $(SRC_PATH
)/Makefile.objs
425 dummy
:= $(call unnest-vars
,, \
432 ivshmem-client-obj-y \
433 ivshmem-server-obj-y \
435 libvhost-user-obj-y \
436 vhost-user-scsi-obj-y \
437 vhost-user-blk-obj-y \
438 vhost-user-input-obj-y \
439 vhost-user-gpu-obj-y \
450 include $(SRC_PATH
)/tests
/Makefile.
include
452 all: $(DOCS
) $(if
$(BUILD_DOCS
),sphinxdocs
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
$(vhost-user-json-y
)
454 qemu-version.h
: FORCE
455 $(call quiet-command
, \
456 (printf
'#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
457 printf
'#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
459 $(call quiet-command
, if
! cmp
-s
$@
$@.tmp
; then \
465 config-host.h
: config-host.h-timestamp
466 config-host.h-timestamp
: config-host.mak
467 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
468 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
470 TARGET_DIRS_RULES
:= $(foreach t
, all clean install, $(addsuffix /$(t
), $(TARGET_DIRS
)))
472 SOFTMMU_ALL_RULES
=$(filter %-softmmu
/all, $(TARGET_DIRS_RULES
))
473 $(SOFTMMU_ALL_RULES
): $(authz-obj-y
)
474 $(SOFTMMU_ALL_RULES
): $(block-obj-y
)
475 $(SOFTMMU_ALL_RULES
): $(chardev-obj-y
)
476 $(SOFTMMU_ALL_RULES
): $(crypto-obj-y
)
477 $(SOFTMMU_ALL_RULES
): $(io-obj-y
)
478 $(SOFTMMU_ALL_RULES
): config-all-devices.mak
479 ifdef DECOMPRESS_EDK2_BLOBS
480 $(SOFTMMU_ALL_RULES
): $(edk2-decompressed
)
483 .PHONY
: $(TARGET_DIRS_RULES
)
484 # The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
485 # $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
486 $(TARGET_DIRS_RULES
):
487 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" $(notdir $@
),)
489 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
490 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
491 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
494 dtc
/all: .git-submodule-status dtc
/libfdt dtc
/tests
495 $(call quiet-command
,$(MAKE
) $(DTC_MAKE_ARGS
) CPPFLAGS
="$(DTC_CPPFLAGS)" CFLAGS
="$(DTC_CFLAGS)" LDFLAGS
="$(LDFLAGS)" ARFLAGS
="$(ARFLAGS)" CC
="$(CC)" AR
="$(AR)" LD
="$(LD)" $(SUBDIR_MAKEFLAGS
) libfdt
/libfdt.a
,)
497 dtc
/%: .git-submodule-status
500 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
501 # Not overriding CFLAGS leads to mis-matches between compilation modes.
502 # Therefore we replicate some of the logic in the sub-makefile.
503 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
504 # no need to annoy QEMU developers with such things.
505 CAP_CFLAGS
= $(patsubst -W
%,,$(CFLAGS
) $(QEMU_CFLAGS
))
506 CAP_CFLAGS
+= -DCAPSTONE_USE_SYS_DYN_MEM
507 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM
508 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM64
509 CAP_CFLAGS
+= -DCAPSTONE_HAS_POWERPC
510 CAP_CFLAGS
+= -DCAPSTONE_HAS_X86
513 capstone
/all: .git-submodule-status
514 $(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
))
517 slirp
/all: .git-submodule-status
518 $(call quiet-command
,$(MAKE
) -C
$(SRC_PATH
)/slirp \
519 BUILD_DIR
="$(BUILD_DIR)/slirp" \
520 PKG_CONFIG
="$(PKG_CONFIG)" \
521 CC
="$(CC)" AR
="$(AR)" LD
="$(LD)" RANLIB
="$(RANLIB)" \
522 CFLAGS
="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS
="$(LDFLAGS)")
524 # Compatibility gunk to keep make working across the rename of targets
525 # for recursion, to be removed some time after 4.1.
527 subdir-capstone
: capstone
/all
528 subdir-slirp
: slirp
/all
530 $(filter %/all, $(TARGET_DIRS_RULES
)): libqemuutil.a
$(common-obj-y
) \
533 ROM_DIRS
= $(addprefix pc-bios
/, $(ROMS
))
534 ROM_DIRS_RULES
=$(foreach t
, all clean, $(addsuffix /$(t
), $(ROM_DIRS
)))
535 # Only keep -O and -g cflags
536 .PHONY
: $(ROM_DIRS_RULES
)
538 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" CFLAGS
="$(filter -O% -g%,$(CFLAGS))" $(notdir $@
),)
540 .PHONY
: recurse-all recurse-clean recurse-install
541 recurse-all
: $(addsuffix /all, $(TARGET_DIRS
) $(ROM_DIRS
))
542 recurse-clean
: $(addsuffix /clean, $(TARGET_DIRS
) $(ROM_DIRS
))
543 recurse-install
: $(addsuffix /install, $(TARGET_DIRS
))
544 $(addsuffix /install, $(TARGET_DIRS
)): all
546 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc config-host.h
547 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<,"RC","version.o")
549 Makefile
: $(version-obj-y
)
551 ######################################################################
554 libqemuutil.a
: $(util-obj-y
) $(trace-obj-y
) $(stub-obj-y
)
555 libvhost-user.a
: $(libvhost-user-obj-y
) $(util-obj-y
) $(stub-obj-y
)
557 ######################################################################
559 COMMON_LDADDS
= libqemuutil.a
561 qemu-img.o
: qemu-img-cmds.h
563 qemu-img
$(EXESUF
): qemu-img.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
564 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
565 qemu-io
$(EXESUF
): qemu-io.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
567 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
$(COMMON_LDADDS
)
569 qemu-keymap
$(EXESUF
): qemu-keymap.o ui
/input-keymap.o
$(COMMON_LDADDS
)
571 qemu-edid
$(EXESUF
): qemu-edid.o hw
/display
/edid-generate.o
$(COMMON_LDADDS
)
573 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/9p-marshal.o fsdev
/9p-iov-marshal.o
$(COMMON_LDADDS
)
575 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
)
577 scsi
/qemu-pr-helper
$(EXESUF
): LIBS
+= -ludev
-lmultipath
-lmpathpersist
580 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
581 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
583 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
584 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
586 qemu-keymap
$(EXESUF
): LIBS
+= $(XKBCOMMON_LIBS
)
587 qemu-keymap
$(EXESUF
): QEMU_CFLAGS
+= $(XKBCOMMON_CFLAGS
)
589 qapi-py
= $(SRC_PATH
)/scripts
/qapi
/__init__.py \
590 $(SRC_PATH
)/scripts
/qapi
/commands.py \
591 $(SRC_PATH
)/scripts
/qapi
/common.py \
592 $(SRC_PATH
)/scripts
/qapi
/doc.py \
593 $(SRC_PATH
)/scripts
/qapi
/error.py \
594 $(SRC_PATH
)/scripts
/qapi
/events.py \
595 $(SRC_PATH
)/scripts
/qapi
/expr.py \
596 $(SRC_PATH
)/scripts
/qapi
/gen.py \
597 $(SRC_PATH
)/scripts
/qapi
/introspect.py \
598 $(SRC_PATH
)/scripts
/qapi
/parser.py \
599 $(SRC_PATH
)/scripts
/qapi
/schema.py \
600 $(SRC_PATH
)/scripts
/qapi
/source.py \
601 $(SRC_PATH
)/scripts
/qapi
/types.py \
602 $(SRC_PATH
)/scripts
/qapi
/visit.py \
603 $(SRC_PATH
)/scripts
/qapi-gen.py
605 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h \
606 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h \
607 qga
/qapi-generated
/qga-qapi-commands.h qga
/qapi-generated
/qga-qapi-commands.c \
608 qga
/qapi-generated
/qga-qapi-init-commands.h qga
/qapi-generated
/qga-qapi-init-commands.c \
609 qga
/qapi-generated
/qga-qapi-doc.texi
: \
610 qga
/qapi-generated
/qapi-gen-timestamp
;
611 qga
/qapi-generated
/qapi-gen-timestamp
: $(SRC_PATH
)/qga
/qapi-schema.json
$(qapi-py
)
612 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
613 -o qga
/qapi-generated
-p
"qga-" $<, \
614 "GEN","$(@:%-timestamp=%)")
617 qapi-modules
= $(SRC_PATH
)/qapi
/qapi-schema.json \
618 $(QAPI_MODULES
:%=$(SRC_PATH
)/qapi
/%.json
)
620 $(GENERATED_QAPI_FILES
): qapi-gen-timestamp
;
621 qapi-gen-timestamp
: $(qapi-modules
) $(qapi-py
)
622 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
624 "GEN","$(@:%-timestamp=%)")
627 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h qga-qapi-init-commands.h
)
628 $(qga-obj-y
): $(QGALIB_GEN
)
630 qemu-ga
$(EXESUF
): $(qga-obj-y
) $(COMMON_LDADDS
)
633 ifdef QEMU_GA_MSI_ENABLED
634 QEMU_GA_MSI
=qemu-ga-
$(ARCH
).msi
638 $(QEMU_GA_MSI
): qemu-ga.exe
$(QGA_VSS_PROVIDER
)
640 $(QEMU_GA_MSI
): config-host.mak
642 $(QEMU_GA_MSI
): $(SRC_PATH
)/qga
/installer
/qemu-ga.wxs
643 $(call quiet-command
,QEMU_GA_VERSION
="$(QEMU_GA_VERSION)" QEMU_GA_MANUFACTURER
="$(QEMU_GA_MANUFACTURER)" QEMU_GA_DISTRO
="$(QEMU_GA_DISTRO)" BUILD_DIR
="$(BUILD_DIR)" \
644 wixl
-o
$@
$(QEMU_GA_MSI_ARCH
) $(QEMU_GA_MSI_WITH_VSS
) $(QEMU_GA_MSI_MINGW_DLL_PATH
) $<,"WIXL","$@")
647 @echo
"MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
652 qemu-ga
: qemu-ga
$(EXESUF
) $(QGA_VSS_PROVIDER
) $(QEMU_GA_MSI
)
655 elf2dmp
$(EXESUF
): $(elf2dmp-obj-y
)
659 ivshmem-client
$(EXESUF
): $(ivshmem-client-obj-y
) $(COMMON_LDADDS
)
661 ivshmem-server
$(EXESUF
): $(ivshmem-server-obj-y
) $(COMMON_LDADDS
)
664 vhost-user-scsi
$(EXESUF
): $(vhost-user-scsi-obj-y
) libvhost-user.a
666 vhost-user-blk
$(EXESUF
): $(vhost-user-blk-obj-y
) libvhost-user.a
669 rdmacm-mux
$(EXESUF
): LIBS
+= "-libumad"
670 rdmacm-mux
$(EXESUF
): $(rdmacm-mux-obj-y
) $(COMMON_LDADDS
)
673 vhost-user-gpu
$(EXESUF
): $(vhost-user-gpu-obj-y
) $(libvhost-user-obj-y
) libqemuutil.a libqemustub.a
676 ifdef CONFIG_VHOST_USER_INPUT
678 vhost-user-input
$(EXESUF
): $(vhost-user-input-obj-y
) libvhost-user.a libqemuutil.a
681 # build by default, do not install
682 all: vhost-user-input
$(EXESUF
)
686 module_block.h
: $(SRC_PATH
)/scripts
/modules
/module_block.py config-host.mak
687 $(call quiet-command
,$(PYTHON
) $< $@ \
688 $(addprefix $(SRC_PATH
)/,$(patsubst %.mo
,%.c
,$(block-obj-m
))), \
692 .PHONY
: clean-coverage
694 $(call quiet-command
, \
695 find . \
( -name
'*.gcda' -o
-name
'*.gcov' \
) -type f
-exec
rm {} +, \
696 "CLEAN", "coverage files")
700 # avoid old build problems by removing potentially incorrect old files
701 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
702 rm -f qemu-options.def
704 find . \
( -name
'*.so' -o
-name
'*.dll' -o
-name
'*.mo' -o
-name
'*.[oda]' \
) -type f \
705 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-aarch64.a \
706 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-arm.a \
707 ! -path .
/roms
/edk2
/BaseTools
/Source
/Python
/UPT
/Dll
/sqlite3.dll \
709 rm -f
$(edk2-decompressed
)
710 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) TAGS cscope.
* *.pod
*~
*/*~
711 rm -f fsdev
/*.pod scsi
/*.pod
712 rm -f qemu-img-cmds.h
713 rm -f ui
/shader
/*-vert.h ui
/shader
/*-frag.h
714 @
# May not be present in generated-files-y
715 rm -f trace
/generated-tracers-dtrace.dtrace
*
716 rm -f trace
/generated-tracers-dtrace.h
*
717 rm -f
$(foreach f
,$(generated-files-y
),$(f
) $(f
)-timestamp
)
718 rm -f qapi-gen-timestamp
719 rm -rf qga
/qapi-generated
720 rm -f config-all-devices.mak
722 VERSION ?
= $(shell cat VERSION
)
724 dist: qemu-
$(VERSION
).
tar.bz2
727 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
729 define clean-manual
=
730 rm -rf
$(MANUAL_BUILDDIR
)/$1/_static
731 rm -f
$(MANUAL_BUILDDIR
)/$1/objects.inv
$(MANUAL_BUILDDIR
)/$1/searchindex.js
$(MANUAL_BUILDDIR
)/$1/*.html
735 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
) qemu-options.texi qemu-img-cmds.texi qemu-monitor.texi qemu-monitor-info.texi
736 rm -f tests
/tcg
/config-
*.mak
737 rm -f config-all-devices.mak config-all-disas.mak config.status
738 rm -f
$(SUBDIR_DEVICES_MAK
)
739 rm -f po
/*.mo tests
/qemu-iotests
/common.env
740 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
741 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps
742 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
743 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
744 rm -f qemu-doc.vr qemu-doc.txt
745 rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
747 rm -f linux-headers
/asm
748 rm -f docs
/version.texi
749 rm -f docs
/interop
/qemu-ga-qapi.texi docs
/interop
/qemu-qmp-qapi.texi
750 rm -f docs
/interop
/qemu-qmp-ref
.7 docs
/interop
/qemu-ga-ref
.7
751 rm -f docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
752 rm -f docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
753 rm -f docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html
754 rm -f docs
/qemu-block-drivers
.7
755 rm -f docs
/qemu-cpu-models
.7
757 $(call clean-manual
,devel
)
758 $(call clean-manual
,interop
)
759 $(call clean-manual
,specs
)
760 for d in
$(TARGET_DIRS
); do \
761 rm -rf
$$d || exit
1 ; \
764 if
test -f dtc
/version_gen.h
; then
$(MAKE
) $(DTC_MAKE_ARGS
) clean; fi
766 KEYMAPS
=da en-gb et fr fr-ch is lt no pt-br sv \
767 ar de en-us fi fr-be hr it lv nl pl ru th \
768 de-ch es fo fr-ca hu ja mk pt sl tr \
772 BLOBS
=bios.bin bios-256k.bin bios-microvm.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
773 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
774 vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
775 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
776 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
777 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
778 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
779 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
780 efi-e1000e.rom efi-vmxnet3.rom \
782 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
783 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
784 s390-ccw.img s390-netboot.img \
785 slof.bin skiboot.lid \
787 u-boot.e500 u-boot-sam460-20100605.bin \
791 opensbi-riscv32-virt-fw_jump.bin \
792 opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
795 DESCS
=50-edk2-i386-secure.json
50-edk2-x86_64-secure.json \
796 60-edk2-aarch64.json
60-edk2-arm.json
60-edk2-i386.json
60-edk2-x86_64.json
802 # Note that we manually filter-out the non-Sphinx documentation which
803 # is currently built into the docs/interop directory in the build tree,
804 # and also any sphinx-built manpages.
805 define install-manual
=
806 for d in
$$(cd
$(MANUAL_BUILDDIR
) && find
$1 -type d
); do
$(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)/$$d"; done
807 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
810 # Note that we deliberately do not install the "devel" manual: it is
811 # for QEMU developers, and not interesting to our users.
812 .PHONY
: install-sphinxdocs
813 install-sphinxdocs
: sphinxdocs
814 $(call install-manual
,interop
)
815 $(call install-manual
,specs
)
817 install-doc
: $(DOCS
) install-sphinxdocs
818 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
819 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/index.html
"$(DESTDIR)$(qemu_docdir)"
820 $(INSTALL_DATA
) qemu-doc.html
"$(DESTDIR)$(qemu_docdir)"
821 $(INSTALL_DATA
) qemu-doc.txt
"$(DESTDIR)$(qemu_docdir)"
822 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.html
"$(DESTDIR)$(qemu_docdir)"
823 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.txt
"$(DESTDIR)$(qemu_docdir)"
825 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
826 $(INSTALL_DATA
) qemu
.1 "$(DESTDIR)$(mandir)/man1"
827 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man7"
828 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref
.7 "$(DESTDIR)$(mandir)/man7"
829 $(INSTALL_DATA
) docs
/qemu-block-drivers
.7 "$(DESTDIR)$(mandir)/man7"
830 $(INSTALL_DATA
) docs
/qemu-cpu-models
.7 "$(DESTDIR)$(mandir)/man7"
831 ifeq ($(CONFIG_TOOLS
),y
)
832 $(INSTALL_DATA
) qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
833 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
834 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/interop
/qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
836 ifdef CONFIG_TRACE_SYSTEMTAP
837 $(INSTALL_DATA
) scripts
/qemu-trace-stap
.1 "$(DESTDIR)$(mandir)/man1"
839 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
840 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8 "$(DESTDIR)$(mandir)/man8"
841 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.html
"$(DESTDIR)$(qemu_docdir)"
842 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.txt
"$(DESTDIR)$(qemu_docdir)"
843 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref
.7 "$(DESTDIR)$(mandir)/man7"
847 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
848 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
852 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
854 install-localstatedir
:
856 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
857 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
861 ICON_SIZES
=16x16
24x24
32x32
48x48
64x64
128x128
256x256
512x512
864 $(INSTALL_DIR
) "$(DESTDIR)$(includedir)"
866 install: all $(if
$(BUILD_DOCS
),install-doc
) \
867 install-datadir install-localstatedir install-includedir \
868 $(if
$(INSTALL_BLOBS
),$(edk2-decompressed
)) \
871 $(call install-prog
,$(TOOLS
),$(DESTDIR
)$(bindir))
873 ifneq ($(CONFIG_MODULES
),)
874 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
875 for s in
$(modules-m
:.mo
=$(DSOSUF
)); do \
876 t
="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
877 $(INSTALL_LIB
) $$s "$$t"; \
878 test -z
"$(STRIP)" ||
$(STRIP
) "$$t"; \
881 ifneq ($(HELPERS-y
),)
882 $(call install-prog
,$(HELPERS-y
),$(DESTDIR
)$(libexecdir
))
884 ifneq ($(vhost-user-json-y
),)
885 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/vhost-user/"
886 for x in
$(vhost-user-json-y
); do \
887 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)/vhost-user/"; \
890 ifdef CONFIG_TRACE_SYSTEMTAP
891 $(INSTALL_PROG
) "scripts/qemu-trace-stap" $(DESTDIR
)$(bindir)
894 set
-e
; for x in
$(BLOBS
); do \
895 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
899 set
-e
; for x in
$(edk2-decompressed
); do \
900 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)"; \
904 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/firmware"
905 set
-e
; tmpf
=$$(mktemp
); trap
'rm -f -- "$$tmpf"' EXIT
; \
906 for x in
$(DESCS
); do \
907 sed
-e
's,@DATADIR@,$(qemu_datadir),' \
908 "$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
909 $(INSTALL_DATA
) "$$tmpf" \
910 "$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
913 for s in
$(ICON_SIZES
); do \
914 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
915 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_
$${s}.png \
916 "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
918 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
919 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_32x32.bmp \
920 "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
921 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
922 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu.svg \
923 "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
924 mkdir
-p
"$(DESTDIR)$(qemu_desktopdir)"
925 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/qemu.desktop \
926 "$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
930 ifeq ($(CONFIG_PLUGIN
),y
)
931 $(INSTALL_DATA
) $(SRC_PATH
)/include/qemu
/qemu-plugin.h
"$(DESTDIR)$(includedir)/qemu-plugin.h"
933 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
934 set
-e
; for x in
$(KEYMAPS
); do \
935 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
937 $(INSTALL_DATA
) $(BUILD_DIR
)/trace-events-all
"$(DESTDIR)$(qemu_datadir)/trace-events-all"
942 find
"$(SRC_PATH)" -name
'*.[hc]' -exec ctags
--append
{} +
947 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
950 rm -f
"$(SRC_PATH)"/cscope.
*
951 find
"$(SRC_PATH)/" -name
"*.[chsS]" -print | sed
's,^\./,,' > "$(SRC_PATH)/cscope.files"
952 cscope
-b
-i
"$(SRC_PATH)/cscope.files"
954 # opengl shader programs
955 ui
/shader
/%-vert.h
: $(SRC_PATH
)/ui
/shader
/%.vert
$(SRC_PATH
)/scripts
/shaderinclude.pl
957 $(call quiet-command
,\
958 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
961 ui
/shader
/%-frag.h
: $(SRC_PATH
)/ui
/shader
/%.frag
$(SRC_PATH
)/scripts
/shaderinclude.pl
963 $(call quiet-command
,\
964 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
967 ui
/shader.o
: $(SRC_PATH
)/ui
/shader.c \
968 ui
/shader
/texture-blit-vert.h \
969 ui
/shader
/texture-blit-flip-vert.h \
970 ui
/shader
/texture-blit-frag.h
974 MAKEINFOINCLUDES
= -I docs
-I
$(<D
) -I
$(@D
)
975 MAKEINFOFLAGS
=--no-split
--number-sections
$(MAKEINFOINCLUDES
)
976 TEXI2PODFLAGS
=$(MAKEINFOINCLUDES
) -DVERSION
="$(VERSION)" -DCONFDIR
="$(qemu_confdir)"
977 TEXI2PDFFLAGS
=$(if
$(V
),,--quiet
) -I
$(SRC_PATH
) $(MAKEINFOINCLUDES
)
979 docs
/version.texi
: $(SRC_PATH
)/VERSION config-host.mak
980 $(call quiet-command
,(\
981 echo
"@set VERSION $(VERSION)" && \
982 echo
"@set CONFDIR $(qemu_confdir)" \
985 %.html
: %.texi docs
/version.texi
986 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
987 --html
$< -o
$@
,"GEN","$@")
989 %.
info: %.texi docs
/version.texi
990 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) $< -o
$@
,"GEN","$@")
992 %.txt
: %.texi docs
/version.texi
993 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
994 --plaintext
$< -o
$@
,"GEN","$@")
996 %.pdf
: %.texi docs
/version.texi
997 $(call quiet-command
,texi2pdf
$(TEXI2PDFFLAGS
) $< -o
$@
,"GEN","$@")
999 # Sphinx builds all its documentation at once in one invocation
1000 # and handles "don't rebuild things unless necessary" itself.
1001 # The '.doctrees' files are cached information to speed this up.
1003 sphinxdocs
: $(MANUAL_BUILDDIR
)/devel
/index.html
$(MANUAL_BUILDDIR
)/interop
/index.html
$(MANUAL_BUILDDIR
)/specs
/index.html
1005 # Canned command to build a single manual
1006 # Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
1007 # Note the use of different doctree for each (manual, builder) tuple;
1008 # this works around Sphinx not handling parallel invocation on
1009 # a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
1010 build-manual
= $(call quiet-command
,CONFDIR
="$(qemu_confdir)" sphinx-build
$(if
$(V
),,-q
) -W
-b
$2 -D version
=$(VERSION
) -D release
="$(FULL_VERSION)" -d .doctrees
/$1-$2 $(SRC_PATH
)/docs
/$1 $(MANUAL_BUILDDIR
)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
1011 # We assume all RST files in the manual's directory are used in it
1012 manual-deps
= $(wildcard $(SRC_PATH
)/docs
/$1/*.rst
) \
1013 $(wildcard $(SRC_PATH
)/docs
/$1/*.rst.inc
) \
1014 $(SRC_PATH
)/docs
/$1/conf.py
$(SRC_PATH
)/docs
/conf.py
1016 $(MANUAL_BUILDDIR
)/devel
/index.html
: $(call manual-deps
,devel
)
1017 $(call build-manual
,devel
,html
)
1019 $(MANUAL_BUILDDIR
)/interop
/index.html
: $(call manual-deps
,interop
)
1020 $(call build-manual
,interop
,html
)
1022 $(MANUAL_BUILDDIR
)/specs
/index.html
: $(call manual-deps
,specs
)
1023 $(call build-manual
,specs
,html
)
1025 $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8: $(call manual-deps
,interop
)
1026 $(call build-manual
,interop
,man
)
1028 $(MANUAL_BUILDDIR
)/interop
/qemu-nbd
.8: $(call manual-deps
,interop
)
1029 $(call build-manual
,interop
,man
)
1031 $(MANUAL_BUILDDIR
)/index.html
: $(SRC_PATH
)/docs
/index.html.in qemu-version.h
1032 @mkdir
-p
"$(MANUAL_BUILDDIR)"
1033 $(call quiet-command
, sed
"s|@@VERSION@@|${VERSION}|g" $< >$@
, \
1036 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
1037 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1039 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
$(SRC_PATH
)/scripts
/hxtool
1040 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1042 qemu-monitor-info.texi
: $(SRC_PATH
)/hmp-commands-info.hx
$(SRC_PATH
)/scripts
/hxtool
1043 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1045 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
1046 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1048 docs
/interop
/qemu-qmp-qapi.texi
: qapi
/qapi-doc.texi
1051 docs
/interop
/qemu-ga-qapi.texi
: qga
/qapi-generated
/qga-qapi-doc.texi
1054 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
1055 qemu
.1: qemu-option-trace.texi
1056 qemu-img
.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1057 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
1058 docs
/qemu-block-drivers
.7: docs
/qemu-block-drivers.texi
1059 docs
/qemu-cpu-models
.7: docs
/qemu-cpu-models.texi
1060 scripts
/qemu-trace-stap
.1: scripts
/qemu-trace-stap.texi
1062 html
: qemu-doc.html docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html sphinxdocs
1063 info: qemu-doc.
info docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-ga-ref.
info
1064 pdf
: qemu-doc.pdf docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
1065 txt
: qemu-doc.txt docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
1067 qemu-doc.html qemu-doc.
info qemu-doc.pdf qemu-doc.txt
: \
1068 qemu-img.texi qemu-options.texi \
1069 qemu-tech.texi qemu-option-trace.texi \
1070 qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi \
1071 qemu-monitor-info.texi docs
/qemu-block-drivers.texi \
1072 docs
/qemu-cpu-models.texi docs
/security.texi
1074 docs
/interop
/qemu-ga-ref.
dvi docs
/interop
/qemu-ga-ref.html \
1075 docs
/interop
/qemu-ga-ref.
info docs
/interop
/qemu-ga-ref.pdf \
1076 docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7: \
1077 docs
/interop
/qemu-ga-ref.texi docs
/interop
/qemu-ga-qapi.texi
1079 docs
/interop
/qemu-qmp-ref.
dvi docs
/interop
/qemu-qmp-ref.html \
1080 docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-qmp-ref.pdf \
1081 docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7: \
1082 docs
/interop
/qemu-qmp-ref.texi docs
/interop
/qemu-qmp-qapi.texi
1084 $(filter %.1 %.7 %.8,$(DOCS
)): scripts
/texi2pod.pl
1088 %/coverage-report.html
:
1090 $(call quiet-command
,\
1091 gcovr
-r
$(SRC_PATH
) \
1092 $(foreach t
, $(TARGET_DIRS
), --object-directory
$(BUILD_DIR
)/$(t
)) \
1093 --object-directory
$(BUILD_DIR
) \
1094 -p
--html
--html-details
-o
$@
, \
1095 "GEN", "coverage-report.html")
1097 .PHONY
: coverage-report
1098 coverage-report
: $(CURDIR
)/reports
/coverage
/coverage-report.html
1102 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
1104 nsisflags
= -V2
-NOCD
1106 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
1107 ifeq ($(ARCH
),x86_64
)
1108 # 64 bit executables
1109 DLL_PATH
= $(SRC_PATH
)/dll
/w64
1112 # 32 bit executables
1113 DLL_PATH
= $(SRC_PATH
)/dll
/w32
1118 installer
: $(INSTALLER
)
1120 INSTDIR
=/tmp
/qemu-nsis
1122 $(INSTALLER
): install-doc
$(SRC_PATH
)/qemu.nsi
1123 $(MAKE
) install prefix=${INSTDIR}
1126 for i in
*.exe
; do \
1127 $(SIGNCODE
) $${i}; \
1132 for i in qemu-system-
*.exe
; do \
1134 arch
=$${arch
#qemu-system-}; \
1135 echo Section
\"$$arch\" Section_
$$arch; \
1136 echo SetOutPath
\"\
$$INSTDIR\"; \
1137 echo File
\"\
$${BINDIR}\\$$i\"; \
1140 ) >${INSTDIR}/system-emulations.nsh
1141 makensis
$(nsisflags
) \
1142 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
1143 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
1144 -DBINDIR
="${INSTDIR}" \
1145 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
1146 -DSRCDIR
="$(SRC_PATH)" \
1147 -DOUTFILE
="$(INSTALLER)" \
1148 -DDISPLAYVERSION
="$(VERSION)" \
1149 $(SRC_PATH
)/qemu.nsi
1152 $(SIGNCODE
) $(INSTALLER
)
1156 # Add a dependency on the generated files, so that they are always
1157 # rebuilt before other object files
1158 ifneq ($(wildcard config-host.mak
),)
1159 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
1160 Makefile
: $(generated-files-y
)
1164 .SECONDARY
: $(TRACE_HEADERS
) $(TRACE_HEADERS
:%=%-timestamp
) \
1165 $(TRACE_SOURCES
) $(TRACE_SOURCES
:%=%-timestamp
) \
1166 $(TRACE_DTRACE
) $(TRACE_DTRACE
:%=%-timestamp
)
1168 # Include automatically generated dependency files
1169 # Dependencies in Makefile.objs files come from our recursive subdir rules
1170 -include $(wildcard *.d tests
/*.d
)
1172 include $(SRC_PATH
)/tests
/docker
/Makefile.
include
1173 include $(SRC_PATH
)/tests
/vm
/Makefile.
include
1177 @echo
'Generic targets:'
1178 @echo
' all - Build all'
1179 ifdef CONFIG_MODULES
1180 @echo
' modules - Build all modules'
1182 @echo
' dir/file.o - Build specified target only'
1183 @echo
' install - Install QEMU, documentation and tools'
1184 @echo
' ctags/TAGS - Generate tags file for editors'
1185 @echo
' cscope - Generate cscope index'
1187 @
$(if
$(TARGET_DIRS
), \
1188 echo
'Architecture specific targets:'; \
1189 $(foreach t
, $(TARGET_DIRS
), \
1190 printf
" %-30s - Build for %s\\n" $(t
)/all $(t
);) \
1192 @echo
'Cleaning targets:'
1193 @echo
' clean - Remove most generated files but keep the config'
1195 @echo
' clean-coverage - Remove coverage files'
1197 @echo
' distclean - Remove all generated files'
1198 @echo
' dist - Build a distributable tarball'
1200 @echo
'Test targets:'
1201 @echo
' check - Run all tests (check-help for details)'
1202 @echo
' docker - Help about targets running tests inside containers'
1203 @echo
' vm-help - Help about targets running tests inside VM'
1205 @echo
'Documentation targets:'
1206 @echo
' html info pdf txt'
1207 @echo
' - Build documentation in specified format'
1209 @echo
' coverage-report - Create code coverage report'
1213 @echo
'Windows targets:'
1214 @echo
' installer - Build NSIS-based installer for QEMU'
1215 ifdef QEMU_GA_MSI_ENABLED
1216 @echo
' msi - Build MSI-based installer for qemu-ga'
1220 @echo
' $(MAKE) [targets] (quiet build, default)'
1221 @echo
' $(MAKE) V=1 [targets] (verbose build)'