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
79 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
80 @echo
"Please call configure before running make!"
85 include $(SRC_PATH
)/rules.mak
87 # lor is defined in rules.mak
88 CONFIG_BLOCK
:= $(call lor
,$(CONFIG_SOFTMMU
),$(CONFIG_TOOLS
))
90 # Create QEMU_PKGVERSION and FULL_VERSION strings
91 # If PKGVERSION is set, use that; otherwise get version and -dirty status from git
92 QEMU_PKGVERSION
:= $(if
$(PKGVERSION
),$(PKGVERSION
),$(shell \
94 if
test -e .git
; then \
95 git describe
--match
'v*' 2>/dev
/null | tr
-d
'\n'; \
96 if
! git diff-index
--quiet HEAD
&>/dev
/null
; then \
101 # Either "version (pkgversion)", or just "version" if pkgversion not set
102 FULL_VERSION
:= $(if
$(QEMU_PKGVERSION
),$(VERSION
) ($(QEMU_PKGVERSION
)),$(VERSION
))
104 generated-files-y
= qemu-version.h config-host.h qemu-options.def
106 GENERATED_QAPI_FILES
= qapi
/qapi-builtin-types.h qapi
/qapi-builtin-types.c
107 GENERATED_QAPI_FILES
+= qapi
/qapi-types.h qapi
/qapi-types.c
108 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.h
)
109 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.c
)
110 GENERATED_QAPI_FILES
+= qapi
/qapi-builtin-visit.h qapi
/qapi-builtin-visit.c
111 GENERATED_QAPI_FILES
+= qapi
/qapi-visit.h qapi
/qapi-visit.c
112 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.h
)
113 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.c
)
114 GENERATED_QAPI_FILES
+= qapi
/qapi-commands.h qapi
/qapi-commands.c
115 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.h
)
116 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.c
)
117 GENERATED_QAPI_FILES
+= qapi
/qapi-emit-events.h qapi
/qapi-emit-events.c
118 GENERATED_QAPI_FILES
+= qapi
/qapi-events.h qapi
/qapi-events.c
119 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.h
)
120 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.c
)
121 GENERATED_QAPI_FILES
+= qapi
/qapi-introspect.c qapi
/qapi-introspect.h
122 GENERATED_QAPI_FILES
+= qapi
/qapi-doc.texi
124 generated-files-y
+= $(GENERATED_QAPI_FILES
)
126 generated-files-y
+= trace
/generated-tcg-tracers.h
128 generated-files-y
+= trace
/generated-helpers-wrappers.h
129 generated-files-y
+= trace
/generated-helpers.h
130 generated-files-y
+= trace
/generated-helpers.c
132 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.h
133 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.c
135 generated-files-y
+= module_block.h
137 TRACE_HEADERS
= trace-root.h
$(trace-events-subdirs
:%=%/trace.h
)
138 TRACE_SOURCES
= trace-root.c
$(trace-events-subdirs
:%=%/trace.c
)
140 ifdef CONFIG_TRACE_DTRACE
141 TRACE_HEADERS
+= trace-dtrace-root.h
$(trace-events-subdirs
:%=%/trace-dtrace.h
)
142 TRACE_DTRACE
+= trace-dtrace-root.dtrace
$(trace-events-subdirs
:%=%/trace-dtrace.dtrace
)
144 ifdef CONFIG_TRACE_UST
145 TRACE_HEADERS
+= trace-ust-root.h
$(trace-events-subdirs
:%=%/trace-ust.h
)
148 generated-files-y
+= $(TRACE_HEADERS
)
149 generated-files-y
+= $(TRACE_SOURCES
)
150 generated-files-y
+= $(BUILD_DIR
)/trace-events-all
151 generated-files-y
+= .git-submodule-status
153 trace-group-name
= $(shell dirname
$1 | sed
-e
's/[^a-zA-Z0-9]/_/g')
155 tracetool-y
= $(SRC_PATH
)/scripts
/tracetool.py
156 tracetool-y
+= $(shell find
$(SRC_PATH
)/scripts
/tracetool
-name
"*.py")
158 %/trace.h
: %/trace.h-timestamp
159 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
160 %/trace.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
161 $(call quiet-command
,$(TRACETOOL
) \
162 --group
=$(call trace-group-name
,$@
) \
164 --backends
=$(TRACE_BACKENDS
) \
165 $< > $@
,"GEN","$(@:%-timestamp=%)")
167 %/trace.c
: %/trace.c-timestamp
168 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
169 %/trace.c-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
170 $(call quiet-command
,$(TRACETOOL
) \
171 --group
=$(call trace-group-name
,$@
) \
173 --backends
=$(TRACE_BACKENDS
) \
174 $< > $@
,"GEN","$(@:%-timestamp=%)")
176 %/trace-ust.h
: %/trace-ust.h-timestamp
177 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
178 %/trace-ust.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
179 $(call quiet-command
,$(TRACETOOL
) \
180 --group
=$(call trace-group-name
,$@
) \
181 --format
=ust-events-h \
182 --backends
=$(TRACE_BACKENDS
) \
183 $< > $@
,"GEN","$(@:%-timestamp=%)")
185 %/trace-dtrace.dtrace
: %/trace-dtrace.dtrace-timestamp
186 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
187 %/trace-dtrace.dtrace-timestamp
: $(SRC_PATH
)/%/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
188 $(call quiet-command
,$(TRACETOOL
) \
189 --group
=$(call trace-group-name
,$@
) \
191 --backends
=$(TRACE_BACKENDS
) \
192 $< > $@
,"GEN","$(@:%-timestamp=%)")
194 %/trace-dtrace.h
: %/trace-dtrace.dtrace
$(tracetool-y
)
195 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
197 %/trace-dtrace.o
: %/trace-dtrace.dtrace
$(tracetool-y
)
200 trace-root.h
: trace-root.h-timestamp
201 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
202 trace-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
203 $(call quiet-command
,$(TRACETOOL
) \
206 --backends
=$(TRACE_BACKENDS
) \
207 $< > $@
,"GEN","$(@:%-timestamp=%)")
209 trace-root.c
: trace-root.c-timestamp
210 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
211 trace-root.c-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
212 $(call quiet-command
,$(TRACETOOL
) \
215 --backends
=$(TRACE_BACKENDS
) \
216 $< > $@
,"GEN","$(@:%-timestamp=%)")
218 trace-ust-root.h
: trace-ust-root.h-timestamp
219 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
220 trace-ust-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
221 $(call quiet-command
,$(TRACETOOL
) \
223 --format
=ust-events-h \
224 --backends
=$(TRACE_BACKENDS
) \
225 $< > $@
,"GEN","$(@:%-timestamp=%)")
227 trace-ust-all.h
: trace-ust-all.h-timestamp
228 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
229 trace-ust-all.h-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
230 $(call quiet-command
,$(TRACETOOL
) \
232 --format
=ust-events-h \
233 --backends
=$(TRACE_BACKENDS
) \
234 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
236 trace-ust-all.c
: trace-ust-all.c-timestamp
237 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
238 trace-ust-all.c-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
239 $(call quiet-command
,$(TRACETOOL
) \
241 --format
=ust-events-c \
242 --backends
=$(TRACE_BACKENDS
) \
243 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
245 trace-dtrace-root.dtrace
: trace-dtrace-root.dtrace-timestamp
246 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
247 trace-dtrace-root.dtrace-timestamp
: $(SRC_PATH
)/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
248 $(call quiet-command
,$(TRACETOOL
) \
251 --backends
=$(TRACE_BACKENDS
) \
252 $< > $@
,"GEN","$(@:%-timestamp=%)")
254 trace-dtrace-root.h
: trace-dtrace-root.dtrace
255 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
257 trace-dtrace-root.o
: trace-dtrace-root.dtrace
259 KEYCODEMAP_GEN
= $(SRC_PATH
)/ui
/keycodemapdb
/tools
/keymap-gen
260 KEYCODEMAP_CSV
= $(SRC_PATH
)/ui
/keycodemapdb
/data
/keymaps.csv
263 ui
/input-keymap-atset1-to-qcode.c \
264 ui
/input-keymap-linux-to-qcode.c \
265 ui
/input-keymap-qcode-to-atset1.c \
266 ui
/input-keymap-qcode-to-atset2.c \
267 ui
/input-keymap-qcode-to-atset3.c \
268 ui
/input-keymap-qcode-to-linux.c \
269 ui
/input-keymap-qcode-to-qnum.c \
270 ui
/input-keymap-qcode-to-sun.c \
271 ui
/input-keymap-qnum-to-qcode.c \
272 ui
/input-keymap-usb-to-qcode.c \
273 ui
/input-keymap-win32-to-qcode.c \
274 ui
/input-keymap-x11-to-qcode.c \
275 ui
/input-keymap-xorgevdev-to-qcode.c \
276 ui
/input-keymap-xorgkbd-to-qcode.c \
277 ui
/input-keymap-xorgxquartz-to-qcode.c \
278 ui
/input-keymap-xorgxwin-to-qcode.c \
279 ui
/input-keymap-osx-to-qcode.c \
282 generated-files-
$(CONFIG_SOFTMMU
) += $(KEYCODEMAP_FILES
)
284 ui
/input-keymap-
%.c
: $(KEYCODEMAP_GEN
) $(KEYCODEMAP_CSV
) $(SRC_PATH
)/ui
/Makefile.objs
285 $(call quiet-command
,\
286 stem
=$* && src
=$${stem
%-to-
*} dst
=$${stem
#*-to-} && \
287 test -e
$(KEYCODEMAP_GEN
) && \
288 $(PYTHON
) $(KEYCODEMAP_GEN
) \
290 --varname qemu_input_map_
$${src}_to_
$${dst} \
291 code-map
$(KEYCODEMAP_CSV
) $${src} $${dst} \
292 > $@ ||
rm -f
$@
, "GEN", "$@")
294 $(KEYCODEMAP_GEN
): .git-submodule-status
295 $(KEYCODEMAP_CSV
): .git-submodule-status
297 edk2-decompressed
= $(basename $(wildcard pc-bios
/edk2-
*.fd.bz2
))
298 pc-bios
/edk2-
%.fd
: pc-bios
/edk2-
%.fd.bz2
299 $(call quiet-command
,bzip2
-d
-c
$< > $@
,"BUNZIP2",$<)
301 # Don't try to regenerate Makefile or configure
302 # We don't generate any of them
306 .PHONY
: all clean cscope
distclean html
info install install-doc \
307 pdf txt recurse-all
dist msi FORCE
309 $(call set-vpath
, $(SRC_PATH
))
311 LIBS
+=-lz
$(LIBS_TOOLS
)
316 HELPERS-
$(call land
,$(CONFIG_SOFTMMU
),$(CONFIG_LINUX
)) = qemu-bridge-helper
$(EXESUF
)
321 HELPERS-y
+= vhost-user-gpu
$(EXESUF
)
322 vhost-user-json-y
+= contrib
/vhost-user-gpu
/50-qemu-gpu.json
327 # Sphinx does not allow building manuals into the same directory as
328 # the source files, so if we're doing an in-tree QEMU build we must
329 # build the manuals into a subdirectory (and then install them from
330 # there for 'make install'). For an out-of-tree build we can just
331 # use the docs/ subdirectory in the build tree as normal.
332 ifeq ($(realpath
$(SRC_PATH
)),$(realpath .
))
333 MANUAL_BUILDDIR
:= docs
/built
335 MANUAL_BUILDDIR
:= docs
339 DOCS
=qemu-doc.html qemu-doc.txt qemu
.1 qemu-img
.1 qemu-nbd
.8 $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8
340 DOCS
+=docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7
341 DOCS
+=docs
/interop
/qemu-ga-ref.html docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7
342 DOCS
+=docs
/qemu-block-drivers
.7
343 DOCS
+=docs
/qemu-cpu-models
.7
345 DOCS
+=fsdev
/virtfs-proxy-helper
.1
347 ifdef CONFIG_TRACE_SYSTEMTAP
348 DOCS
+=scripts
/qemu-trace-stap
.1
354 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
--quiet
) BUILD_DIR
=$(BUILD_DIR
)
355 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(filter %-softmmu
, $(TARGET_DIRS
)))
356 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %.d
, $(SUBDIR_DEVICES_MAK
))
358 ifeq ($(SUBDIR_DEVICES_MAK
),)
359 config-all-devices.mak
: config-host.mak
360 $(call quiet-command
,echo
'# no devices' > $@
,"GEN","$@")
362 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
) config-host.mak
363 $(call quiet-command
, sed
-n \
364 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
365 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
369 -include $(SUBDIR_DEVICES_MAK_DEP
)
371 # This has to be kept in sync with Kconfig.host.
373 $(CONFIG_MINIKCONF_MODE
) \
374 $@
$*/config-devices.mak.d
$< $(MINIKCONF_INPUTS
) \
375 CONFIG_KVM
=$(CONFIG_KVM
) \
376 CONFIG_SPICE
=$(CONFIG_SPICE
) \
377 CONFIG_IVSHMEM
=$(CONFIG_IVSHMEM
) \
378 CONFIG_TPM
=$(CONFIG_TPM
) \
379 CONFIG_XEN
=$(CONFIG_XEN
) \
380 CONFIG_OPENGL
=$(CONFIG_OPENGL
) \
381 CONFIG_X11
=$(CONFIG_X11
) \
382 CONFIG_VHOST_USER
=$(CONFIG_VHOST_USER
) \
383 CONFIG_VIRTFS
=$(CONFIG_VIRTFS
) \
384 CONFIG_LINUX
=$(CONFIG_LINUX
) \
385 CONFIG_PVRDMA
=$(CONFIG_PVRDMA
)
387 MINIKCONF_INPUTS
= $(SRC_PATH
)/Kconfig.host
$(SRC_PATH
)/hw
/Kconfig
388 MINIKCONF
= $(PYTHON
) $(SRC_PATH
)/scripts
/minikconf.py \
390 $(SUBDIR_DEVICES_MAK
): %/config-devices.mak
: default-configs
/%.mak
$(MINIKCONF_INPUTS
) $(BUILD_DIR
)/config-host.mak
391 $(call quiet-command
, $(MINIKCONF
) $(MINIKCONF_ARGS
) > $@.tmp
, "GEN", "$@.tmp")
392 $(call quiet-command
, if
test -f
$@
; then \
393 if cmp
-s
$@.old
$@
; then \
397 if
test -f
$@.old
; then \
398 echo
"WARNING: $@ (user modified) out of date.";\
400 echo
"WARNING: $@ out of date.";\
402 echo
"Run \"$(MAKE) defconfig\" to regenerate."; \
411 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
413 ifneq ($(wildcard config-host.mak
),)
414 include $(SRC_PATH
)/Makefile.objs
417 dummy
:= $(call unnest-vars
,, \
424 ivshmem-client-obj-y \
425 ivshmem-server-obj-y \
427 libvhost-user-obj-y \
428 vhost-user-scsi-obj-y \
429 vhost-user-blk-obj-y \
430 vhost-user-input-obj-y \
431 vhost-user-gpu-obj-y \
447 include $(SRC_PATH
)/tests
/Makefile.
include
449 all: $(DOCS
) $(if
$(BUILD_DOCS
),sphinxdocs
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
$(vhost-user-json-y
)
451 qemu-version.h
: FORCE
452 $(call quiet-command
, \
453 (printf
'#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
454 printf
'#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
456 $(call quiet-command
, if
! cmp
-s
$@
$@.tmp
; then \
462 config-host.h
: config-host.h-timestamp
463 config-host.h-timestamp
: config-host.mak
464 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
465 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
467 TARGET_DIRS_RULES
:= $(foreach t
, all clean install, $(addsuffix /$(t
), $(TARGET_DIRS
)))
469 SOFTMMU_ALL_RULES
=$(filter %-softmmu
/all, $(TARGET_DIRS_RULES
))
470 $(SOFTMMU_ALL_RULES
): $(authz-obj-y
)
471 $(SOFTMMU_ALL_RULES
): $(block-obj-y
)
472 $(SOFTMMU_ALL_RULES
): $(chardev-obj-y
)
473 $(SOFTMMU_ALL_RULES
): $(crypto-obj-y
)
474 $(SOFTMMU_ALL_RULES
): $(io-obj-y
)
475 $(SOFTMMU_ALL_RULES
): config-all-devices.mak
476 $(SOFTMMU_ALL_RULES
): $(edk2-decompressed
)
478 .PHONY
: $(TARGET_DIRS_RULES
)
479 # The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
480 # $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
481 $(TARGET_DIRS_RULES
):
482 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" $(notdir $@
),)
484 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
485 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
486 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
489 dtc
/all: .git-submodule-status dtc
/libfdt dtc
/tests
490 $(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
,)
492 dtc
/%: .git-submodule-status
495 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
496 # Not overriding CFLAGS leads to mis-matches between compilation modes.
497 # Therefore we replicate some of the logic in the sub-makefile.
498 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
499 # no need to annoy QEMU developers with such things.
500 CAP_CFLAGS
= $(patsubst -W
%,,$(CFLAGS
) $(QEMU_CFLAGS
))
501 CAP_CFLAGS
+= -DCAPSTONE_USE_SYS_DYN_MEM
502 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM
503 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM64
504 CAP_CFLAGS
+= -DCAPSTONE_HAS_POWERPC
505 CAP_CFLAGS
+= -DCAPSTONE_HAS_X86
508 capstone
/all: .git-submodule-status
509 $(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
))
512 slirp
/all: .git-submodule-status
513 $(call quiet-command
,$(MAKE
) -C
$(SRC_PATH
)/slirp BUILD_DIR
="$(BUILD_DIR)/slirp" CC
="$(CC)" AR
="$(AR)" LD
="$(LD)" RANLIB
="$(RANLIB)" CFLAGS
="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS
="$(LDFLAGS)")
515 # Compatibility gunk to keep make working across the rename of targets
516 # for recursion, to be removed some time after 4.1.
518 subdir-capstone
: capstone
/all
519 subdir-slirp
: slirp
/all
521 $(filter %/all, $(TARGET_DIRS_RULES
)): libqemuutil.a
$(common-obj-y
) \
522 $(qom-obj-y
) $(crypto-user-obj-
$(CONFIG_USER_ONLY
))
524 ROM_DIRS
= $(addprefix pc-bios
/, $(ROMS
))
525 ROM_DIRS_RULES
=$(foreach t
, all clean, $(addsuffix /$(t
), $(ROM_DIRS
)))
526 # Only keep -O and -g cflags
527 .PHONY
: $(ROM_DIRS_RULES
)
529 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" CFLAGS
="$(filter -O% -g%,$(CFLAGS))" $(notdir $@
),)
531 .PHONY
: recurse-all recurse-clean recurse-install
532 recurse-all
: $(addsuffix /all, $(TARGET_DIRS
) $(ROM_DIRS
))
533 recurse-clean
: $(addsuffix /clean, $(TARGET_DIRS
) $(ROM_DIRS
))
534 recurse-install
: $(addsuffix /install, $(TARGET_DIRS
))
535 $(addsuffix /install, $(TARGET_DIRS
)): all
537 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc config-host.h
538 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<,"RC","version.o")
540 Makefile
: $(version-obj-y
)
542 ######################################################################
545 libqemuutil.a
: $(util-obj-y
) $(trace-obj-y
) $(stub-obj-y
)
546 libvhost-user.a
: $(libvhost-user-obj-y
) $(util-obj-y
) $(stub-obj-y
)
548 ######################################################################
550 COMMON_LDADDS
= libqemuutil.a
552 qemu-img.o
: qemu-img-cmds.h
554 qemu-img
$(EXESUF
): qemu-img.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
555 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
556 qemu-io
$(EXESUF
): qemu-io.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
558 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
$(COMMON_LDADDS
)
560 qemu-keymap
$(EXESUF
): qemu-keymap.o ui
/input-keymap.o
$(COMMON_LDADDS
)
562 qemu-edid
$(EXESUF
): qemu-edid.o hw
/display
/edid-generate.o
$(COMMON_LDADDS
)
564 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/9p-marshal.o fsdev
/9p-iov-marshal.o
$(COMMON_LDADDS
)
565 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
567 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
)
569 scsi
/qemu-pr-helper
$(EXESUF
): LIBS
+= -ludev
-lmultipath
-lmpathpersist
572 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
573 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
575 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
576 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
578 qemu-keymap
$(EXESUF
): LIBS
+= $(XKBCOMMON_LIBS
)
579 qemu-keymap
$(EXESUF
): QEMU_CFLAGS
+= $(XKBCOMMON_CFLAGS
)
581 qapi-py
= $(SRC_PATH
)/scripts
/qapi
/commands.py \
582 $(SRC_PATH
)/scripts
/qapi
/events.py \
583 $(SRC_PATH
)/scripts
/qapi
/introspect.py \
584 $(SRC_PATH
)/scripts
/qapi
/types.py \
585 $(SRC_PATH
)/scripts
/qapi
/visit.py \
586 $(SRC_PATH
)/scripts
/qapi
/common.py \
587 $(SRC_PATH
)/scripts
/qapi
/doc.py \
588 $(SRC_PATH
)/scripts
/qapi-gen.py
590 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h \
591 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h \
592 qga
/qapi-generated
/qga-qapi-commands.h qga
/qapi-generated
/qga-qapi-commands.c \
593 qga
/qapi-generated
/qga-qapi-doc.texi
: \
594 qga
/qapi-generated
/qapi-gen-timestamp
;
595 qga
/qapi-generated
/qapi-gen-timestamp
: $(SRC_PATH
)/qga
/qapi-schema.json
$(qapi-py
)
596 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
597 -o qga
/qapi-generated
-p
"qga-" $<, \
598 "GEN","$(@:%-timestamp=%)")
601 qapi-modules
= $(SRC_PATH
)/qapi
/qapi-schema.json \
602 $(QAPI_MODULES
:%=$(SRC_PATH
)/qapi
/%.json
)
604 $(GENERATED_QAPI_FILES
): qapi-gen-timestamp
;
605 qapi-gen-timestamp
: $(qapi-modules
) $(qapi-py
)
606 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
608 "GEN","$(@:%-timestamp=%)")
611 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h
)
612 $(qga-obj-y
): $(QGALIB_GEN
)
614 qemu-ga
$(EXESUF
): $(qga-obj-y
) $(COMMON_LDADDS
)
617 ifdef QEMU_GA_MSI_ENABLED
618 QEMU_GA_MSI
=qemu-ga-
$(ARCH
).msi
622 $(QEMU_GA_MSI
): qemu-ga.exe
$(QGA_VSS_PROVIDER
)
624 $(QEMU_GA_MSI
): config-host.mak
626 $(QEMU_GA_MSI
): $(SRC_PATH
)/qga
/installer
/qemu-ga.wxs
627 $(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)" \
628 wixl
-o
$@
$(QEMU_GA_MSI_ARCH
) $(QEMU_GA_MSI_WITH_VSS
) $(QEMU_GA_MSI_MINGW_DLL_PATH
) $<,"WIXL","$@")
631 @echo
"MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
636 qemu-ga
: qemu-ga
$(EXESUF
) $(QGA_VSS_PROVIDER
) $(QEMU_GA_MSI
)
639 elf2dmp
$(EXESUF
): $(elf2dmp-obj-y
)
643 ivshmem-client
$(EXESUF
): $(ivshmem-client-obj-y
) $(COMMON_LDADDS
)
645 ivshmem-server
$(EXESUF
): $(ivshmem-server-obj-y
) $(COMMON_LDADDS
)
648 vhost-user-scsi
$(EXESUF
): $(vhost-user-scsi-obj-y
) libvhost-user.a
650 vhost-user-blk
$(EXESUF
): $(vhost-user-blk-obj-y
) libvhost-user.a
653 rdmacm-mux
$(EXESUF
): LIBS
+= "-libumad"
654 rdmacm-mux
$(EXESUF
): $(rdmacm-mux-obj-y
) $(COMMON_LDADDS
)
657 vhost-user-gpu
$(EXESUF
): $(vhost-user-gpu-obj-y
) $(libvhost-user-obj-y
) libqemuutil.a libqemustub.a
660 ifdef CONFIG_VHOST_USER_INPUT
662 vhost-user-input
$(EXESUF
): $(vhost-user-input-obj-y
) libvhost-user.a libqemuutil.a
665 # build by default, do not install
666 all: vhost-user-input
$(EXESUF
)
670 module_block.h
: $(SRC_PATH
)/scripts
/modules
/module_block.py config-host.mak
671 $(call quiet-command
,$(PYTHON
) $< $@ \
672 $(addprefix $(SRC_PATH
)/,$(patsubst %.mo
,%.c
,$(block-obj-m
))), \
676 .PHONY
: clean-coverage
678 $(call quiet-command
, \
679 find . \
( -name
'*.gcda' -o
-name
'*.gcov' \
) -type f
-exec
rm {} +, \
680 "CLEAN", "coverage files")
684 # avoid old build problems by removing potentially incorrect old files
685 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
686 rm -f qemu-options.def
688 find . \
( -name
'*.so' -o
-name
'*.dll' -o
-name
'*.mo' -o
-name
'*.[oda]' \
) -type f \
689 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-aarch64.a \
690 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-arm.a \
691 ! -path .
/roms
/edk2
/BaseTools
/Source
/Python
/UPT
/Dll
/sqlite3.dll \
693 rm -f
$(edk2-decompressed
)
694 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) TAGS cscope.
* *.pod
*~
*/*~
695 rm -f fsdev
/*.pod scsi
/*.pod
696 rm -f qemu-img-cmds.h
697 rm -f ui
/shader
/*-vert.h ui
/shader
/*-frag.h
698 @
# May not be present in generated-files-y
699 rm -f trace
/generated-tracers-dtrace.dtrace
*
700 rm -f trace
/generated-tracers-dtrace.h
*
701 rm -f
$(foreach f
,$(generated-files-y
),$(f
) $(f
)-timestamp
)
702 rm -f qapi-gen-timestamp
703 rm -rf qga
/qapi-generated
704 rm -f config-all-devices.mak
706 VERSION ?
= $(shell cat VERSION
)
708 dist: qemu-
$(VERSION
).
tar.bz2
711 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
713 define clean-manual
=
714 rm -rf
$(MANUAL_BUILDDIR
)/$1/_static
715 rm -f
$(MANUAL_BUILDDIR
)/$1/objects.inv
$(MANUAL_BUILDDIR
)/$1/searchindex.js
$(MANUAL_BUILDDIR
)/$1/*.html
719 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
720 rm -f tests
/tcg
/config-
*.mak
721 rm -f config-all-devices.mak config-all-disas.mak config.status
722 rm -f
$(SUBDIR_DEVICES_MAK
)
723 rm -f po
/*.mo tests
/qemu-iotests
/common.env
724 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
725 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps
726 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
727 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
728 rm -f qemu-doc.vr qemu-doc.txt
730 rm -f linux-headers
/asm
731 rm -f docs
/version.texi
732 rm -f docs
/interop
/qemu-ga-qapi.texi docs
/interop
/qemu-qmp-qapi.texi
733 rm -f docs
/interop
/qemu-qmp-ref
.7 docs
/interop
/qemu-ga-ref
.7
734 rm -f docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
735 rm -f docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
736 rm -f docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html
737 rm -f docs
/qemu-block-drivers
.7
738 rm -f docs
/qemu-cpu-models
.7
740 $(call clean-manual
,devel
)
741 $(call clean-manual
,interop
)
742 $(call clean-manual
,specs
)
743 for d in
$(TARGET_DIRS
); do \
744 rm -rf
$$d || exit
1 ; \
747 if
test -f dtc
/version_gen.h
; then
$(MAKE
) $(DTC_MAKE_ARGS
) clean; fi
749 KEYMAPS
=da en-gb et fr fr-ch is lt no pt-br sv \
750 ar de en-us fi fr-be hr it lv nl pl ru th \
751 de-ch es fo fr-ca hu ja mk pt sl tr \
755 BLOBS
=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
756 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
757 vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
758 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
759 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
760 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
761 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
762 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
763 efi-e1000e.rom efi-vmxnet3.rom \
765 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
766 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
767 s390-ccw.img s390-netboot.img \
768 spapr-rtas.bin slof.bin skiboot.lid \
770 u-boot.e500 u-boot-sam460-20100605.bin \
774 opensbi-riscv32-virt-fw_jump.bin \
775 opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
778 DESCS
=50-edk2-i386-secure.json
50-edk2-x86_64-secure.json \
779 60-edk2-aarch64.json
60-edk2-arm.json
60-edk2-i386.json
60-edk2-x86_64.json
785 # Note that we manually filter-out the non-Sphinx documentation which
786 # is currently built into the docs/interop directory in the build tree,
787 # and also any sphinx-built manpages.
788 define install-manual
=
789 for d in
$$(cd
$(MANUAL_BUILDDIR
) && find
$1 -type d
); do
$(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)/$$d"; done
790 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
793 # Note that we deliberately do not install the "devel" manual: it is
794 # for QEMU developers, and not interesting to our users.
795 .PHONY
: install-sphinxdocs
796 install-sphinxdocs
: sphinxdocs
797 $(call install-manual
,interop
)
798 $(call install-manual
,specs
)
800 install-doc
: $(DOCS
) install-sphinxdocs
801 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
802 $(INSTALL_DATA
) qemu-doc.html
"$(DESTDIR)$(qemu_docdir)"
803 $(INSTALL_DATA
) qemu-doc.txt
"$(DESTDIR)$(qemu_docdir)"
804 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.html
"$(DESTDIR)$(qemu_docdir)"
805 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.txt
"$(DESTDIR)$(qemu_docdir)"
807 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
808 $(INSTALL_DATA
) qemu
.1 "$(DESTDIR)$(mandir)/man1"
809 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man7"
810 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref
.7 "$(DESTDIR)$(mandir)/man7"
811 $(INSTALL_DATA
) docs
/qemu-block-drivers
.7 "$(DESTDIR)$(mandir)/man7"
812 $(INSTALL_DATA
) docs
/qemu-cpu-models
.7 "$(DESTDIR)$(mandir)/man7"
813 ifeq ($(CONFIG_TOOLS
),y
)
814 $(INSTALL_DATA
) qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
815 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
816 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
818 ifdef CONFIG_TRACE_SYSTEMTAP
819 $(INSTALL_DATA
) scripts
/qemu-trace-stap
.1 "$(DESTDIR)$(mandir)/man1"
821 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
822 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8 "$(DESTDIR)$(mandir)/man8"
823 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.html
"$(DESTDIR)$(qemu_docdir)"
824 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.txt
"$(DESTDIR)$(qemu_docdir)"
825 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref
.7 "$(DESTDIR)$(mandir)/man7"
829 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
830 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
834 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
836 install-localstatedir
:
838 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
839 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
843 ICON_SIZES
=16x16
24x24
32x32
48x48
64x64
128x128
256x256
512x512
845 install: all $(if
$(BUILD_DOCS
),install-doc
) install-datadir install-localstatedir \
846 $(if
$(INSTALL_BLOBS
),$(edk2-decompressed
)) \
849 $(call install-prog
,$(TOOLS
),$(DESTDIR
)$(bindir))
851 ifneq ($(CONFIG_MODULES
),)
852 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
853 for s in
$(modules-m
:.mo
=$(DSOSUF
)); do \
854 t
="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
855 $(INSTALL_LIB
) $$s "$$t"; \
856 test -z
"$(STRIP)" ||
$(STRIP
) "$$t"; \
859 ifneq ($(HELPERS-y
),)
860 $(call install-prog
,$(HELPERS-y
),$(DESTDIR
)$(libexecdir
))
862 ifneq ($(vhost-user-json-y
),)
863 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/vhost-user/"
864 for x in
$(vhost-user-json-y
); do \
865 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)/vhost-user/"; \
868 ifdef CONFIG_TRACE_SYSTEMTAP
869 $(INSTALL_PROG
) "scripts/qemu-trace-stap" $(DESTDIR
)$(bindir)
872 set
-e
; for x in
$(BLOBS
); do \
873 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
877 set
-e
; for x in
$(edk2-decompressed
); do \
878 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)"; \
882 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/firmware"
883 set
-e
; tmpf
=$$(mktemp
); trap
'rm -f -- "$$tmpf"' EXIT
; \
884 for x in
$(DESCS
); do \
885 sed
-e
's,@DATADIR@,$(qemu_datadir),' \
886 "$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
887 $(INSTALL_DATA
) "$$tmpf" \
888 "$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
891 for s in
$(ICON_SIZES
); do \
892 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
893 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_
$${s}.png \
894 "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
896 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
897 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_32x32.bmp \
898 "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
899 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
900 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu.svg \
901 "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
902 mkdir
-p
"$(DESTDIR)$(qemu_desktopdir)"
903 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/qemu.desktop \
904 "$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
908 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
909 set
-e
; for x in
$(KEYMAPS
); do \
910 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
912 $(INSTALL_DATA
) $(BUILD_DIR
)/trace-events-all
"$(DESTDIR)$(qemu_datadir)/trace-events-all"
917 find
"$(SRC_PATH)" -name
'*.[hc]' -exec ctags
--append
{} +
922 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
925 rm -f
"$(SRC_PATH)"/cscope.
*
926 find
"$(SRC_PATH)/" -name
"*.[chsS]" -print | sed
's,^\./,,' > "$(SRC_PATH)/cscope.files"
927 cscope
-b
-i
"$(SRC_PATH)/cscope.files"
929 # opengl shader programs
930 ui
/shader
/%-vert.h
: $(SRC_PATH
)/ui
/shader
/%.vert
$(SRC_PATH
)/scripts
/shaderinclude.pl
932 $(call quiet-command
,\
933 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
936 ui
/shader
/%-frag.h
: $(SRC_PATH
)/ui
/shader
/%.frag
$(SRC_PATH
)/scripts
/shaderinclude.pl
938 $(call quiet-command
,\
939 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
942 ui
/shader.o
: $(SRC_PATH
)/ui
/shader.c \
943 ui
/shader
/texture-blit-vert.h \
944 ui
/shader
/texture-blit-flip-vert.h \
945 ui
/shader
/texture-blit-frag.h
949 MAKEINFOINCLUDES
= -I docs
-I
$(<D
) -I
$(@D
)
950 MAKEINFOFLAGS
=--no-split
--number-sections
$(MAKEINFOINCLUDES
)
951 TEXI2PODFLAGS
=$(MAKEINFOINCLUDES
) -DVERSION
="$(VERSION)" -DCONFDIR
="$(qemu_confdir)"
952 TEXI2PDFFLAGS
=$(if
$(V
),,--quiet
) -I
$(SRC_PATH
) $(MAKEINFOINCLUDES
)
954 docs
/version.texi
: $(SRC_PATH
)/VERSION config-host.mak
955 $(call quiet-command
,(\
956 echo
"@set VERSION $(VERSION)" && \
957 echo
"@set CONFDIR $(qemu_confdir)" \
960 %.html
: %.texi docs
/version.texi
961 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
962 --html
$< -o
$@
,"GEN","$@")
964 %.
info: %.texi docs
/version.texi
965 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) $< -o
$@
,"GEN","$@")
967 %.txt
: %.texi docs
/version.texi
968 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
969 --plaintext
$< -o
$@
,"GEN","$@")
971 %.pdf
: %.texi docs
/version.texi
972 $(call quiet-command
,texi2pdf
$(TEXI2PDFFLAGS
) $< -o
$@
,"GEN","$@")
974 # Sphinx builds all its documentation at once in one invocation
975 # and handles "don't rebuild things unless necessary" itself.
976 # The '.doctrees' files are cached information to speed this up.
978 sphinxdocs
: $(MANUAL_BUILDDIR
)/devel
/index.html
$(MANUAL_BUILDDIR
)/interop
/index.html
$(MANUAL_BUILDDIR
)/specs
/index.html
980 # Canned command to build a single manual
981 # Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
982 build-manual
= $(call quiet-command
,CONFDIR
="$(qemu_confdir)" sphinx-build
$(if
$(V
),,-q
) -W
-n
-b
$2 -D version
=$(VERSION
) -D release
="$(FULL_VERSION)" -d .doctrees
/$1 $(SRC_PATH
)/docs
/$1 $(MANUAL_BUILDDIR
)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
983 # We assume all RST files in the manual's directory are used in it
984 manual-deps
= $(wildcard $(SRC_PATH
)/docs
/$1/*.rst
) $(SRC_PATH
)/docs
/$1/conf.py
$(SRC_PATH
)/docs
/conf.py
986 $(MANUAL_BUILDDIR
)/devel
/index.html
: $(call manual-deps
,devel
)
987 $(call build-manual
,devel
,html
)
989 $(MANUAL_BUILDDIR
)/interop
/index.html
: $(call manual-deps
,interop
)
990 $(call build-manual
,interop
,html
)
992 $(MANUAL_BUILDDIR
)/specs
/index.html
: $(call manual-deps
,specs
)
993 $(call build-manual
,specs
,html
)
995 $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8: $(call manual-deps
,interop
)
996 $(call build-manual
,interop
,man
)
998 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
999 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1001 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
$(SRC_PATH
)/scripts
/hxtool
1002 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1004 qemu-monitor-info.texi
: $(SRC_PATH
)/hmp-commands-info.hx
$(SRC_PATH
)/scripts
/hxtool
1005 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1007 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
1008 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
1010 docs
/interop
/qemu-qmp-qapi.texi
: qapi
/qapi-doc.texi
1013 docs
/interop
/qemu-ga-qapi.texi
: qga
/qapi-generated
/qga-qapi-doc.texi
1016 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
1017 qemu
.1: qemu-option-trace.texi
1018 qemu-img
.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1019 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
1020 qemu-nbd
.8: qemu-nbd.texi qemu-option-trace.texi
1021 docs
/qemu-block-drivers
.7: docs
/qemu-block-drivers.texi
1022 docs
/qemu-cpu-models
.7: docs
/qemu-cpu-models.texi
1023 scripts
/qemu-trace-stap
.1: scripts
/qemu-trace-stap.texi
1025 html
: qemu-doc.html docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html sphinxdocs
1026 info: qemu-doc.
info docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-ga-ref.
info
1027 pdf
: qemu-doc.pdf docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
1028 txt
: qemu-doc.txt docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
1030 qemu-doc.html qemu-doc.
info qemu-doc.pdf qemu-doc.txt
: \
1031 qemu-img.texi qemu-nbd.texi qemu-options.texi \
1032 qemu-tech.texi qemu-option-trace.texi \
1033 qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi \
1034 qemu-monitor-info.texi docs
/qemu-block-drivers.texi \
1035 docs
/qemu-cpu-models.texi docs
/security.texi
1037 docs
/interop
/qemu-ga-ref.
dvi docs
/interop
/qemu-ga-ref.html \
1038 docs
/interop
/qemu-ga-ref.
info docs
/interop
/qemu-ga-ref.pdf \
1039 docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7: \
1040 docs
/interop
/qemu-ga-ref.texi docs
/interop
/qemu-ga-qapi.texi
1042 docs
/interop
/qemu-qmp-ref.
dvi docs
/interop
/qemu-qmp-ref.html \
1043 docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-qmp-ref.pdf \
1044 docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7: \
1045 docs
/interop
/qemu-qmp-ref.texi docs
/interop
/qemu-qmp-qapi.texi
1047 $(filter %.1 %.7 %.8,$(DOCS
)): scripts
/texi2pod.pl
1051 %/coverage-report.html
:
1053 $(call quiet-command
,\
1054 gcovr
-r
$(SRC_PATH
) \
1055 $(foreach t
, $(TARGET_DIRS
), --object-directory
$(BUILD_DIR
)/$(t
)) \
1056 --object-directory
$(BUILD_DIR
) \
1057 -p
--html
--html-details
-o
$@
, \
1058 "GEN", "coverage-report.html")
1060 .PHONY
: coverage-report
1061 coverage-report
: $(CURDIR
)/reports
/coverage
/coverage-report.html
1065 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
1067 nsisflags
= -V2
-NOCD
1069 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
1070 ifeq ($(ARCH
),x86_64
)
1071 # 64 bit executables
1072 DLL_PATH
= $(SRC_PATH
)/dll
/w64
1075 # 32 bit executables
1076 DLL_PATH
= $(SRC_PATH
)/dll
/w32
1081 installer
: $(INSTALLER
)
1083 INSTDIR
=/tmp
/qemu-nsis
1085 $(INSTALLER
): install-doc
$(SRC_PATH
)/qemu.nsi
1086 $(MAKE
) install prefix=${INSTDIR}
1089 for i in
*.exe
; do \
1090 $(SIGNCODE
) $${i}; \
1095 for i in qemu-system-
*.exe
; do \
1097 arch
=$${arch
#qemu-system-}; \
1098 echo Section
\"$$arch\" Section_
$$arch; \
1099 echo SetOutPath
\"\
$$INSTDIR\"; \
1100 echo File
\"\
$${BINDIR}\\$$i\"; \
1103 ) >${INSTDIR}/system-emulations.nsh
1104 makensis
$(nsisflags
) \
1105 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
1106 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
1107 -DBINDIR
="${INSTDIR}" \
1108 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
1109 -DSRCDIR
="$(SRC_PATH)" \
1110 -DOUTFILE
="$(INSTALLER)" \
1111 -DDISPLAYVERSION
="$(VERSION)" \
1112 $(SRC_PATH
)/qemu.nsi
1115 $(SIGNCODE
) $(INSTALLER
)
1119 # Add a dependency on the generated files, so that they are always
1120 # rebuilt before other object files
1121 ifneq ($(wildcard config-host.mak
),)
1122 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
1123 Makefile
: $(generated-files-y
)
1127 .SECONDARY
: $(TRACE_HEADERS
) $(TRACE_HEADERS
:%=%-timestamp
) \
1128 $(TRACE_SOURCES
) $(TRACE_SOURCES
:%=%-timestamp
) \
1129 $(TRACE_DTRACE
) $(TRACE_DTRACE
:%=%-timestamp
)
1131 # Include automatically generated dependency files
1132 # Dependencies in Makefile.objs files come from our recursive subdir rules
1133 -include $(wildcard *.d tests
/*.d
)
1135 include $(SRC_PATH
)/tests
/docker
/Makefile.
include
1136 include $(SRC_PATH
)/tests
/vm
/Makefile.
include
1140 @echo
'Generic targets:'
1141 @echo
' all - Build all'
1142 ifdef CONFIG_MODULES
1143 @echo
' modules - Build all modules'
1145 @echo
' dir/file.o - Build specified target only'
1146 @echo
' install - Install QEMU, documentation and tools'
1147 @echo
' ctags/TAGS - Generate tags file for editors'
1148 @echo
' cscope - Generate cscope index'
1150 @
$(if
$(TARGET_DIRS
), \
1151 echo
'Architecture specific targets:'; \
1152 $(foreach t
, $(TARGET_DIRS
), \
1153 printf
" %-30s - Build for %s\\n" $(t
)/all $(t
);) \
1155 @echo
'Cleaning targets:'
1156 @echo
' clean - Remove most generated files but keep the config'
1158 @echo
' clean-coverage - Remove coverage files'
1160 @echo
' distclean - Remove all generated files'
1161 @echo
' dist - Build a distributable tarball'
1163 @echo
'Test targets:'
1164 @echo
' check - Run all tests (check-help for details)'
1165 @echo
' docker - Help about targets running tests inside containers'
1166 @echo
' vm-help - Help about targets running tests inside VM'
1168 @echo
'Documentation targets:'
1169 @echo
' html info pdf txt'
1170 @echo
' - Build documentation in specified format'
1172 @echo
' coverage-report - Create code coverage report'
1176 @echo
'Windows targets:'
1177 @echo
' installer - Build NSIS-based installer for QEMU'
1178 ifdef QEMU_GA_MSI_ENABLED
1179 @echo
' msi - Build MSI-based installer for qemu-ga'
1183 @echo
' $(MAKE) [targets] (quiet build, default)'
1184 @echo
' $(MAKE) V=1 [targets] (verbose build)'