3 ifneq ($(words $(subst :, ,$(CURDIR
))), 1)
4 $(error main directory cannot contain spaces nor colons
)
7 # Always point to the root of the build tree (needs GNU make).
10 # Before including a proper config-host.mak, assume we are in the source tree
13 UNCHECKED_GOALS
:= %clean TAGS cscope ctags
dist \
15 help check-help print-
% \
16 docker docker-
% vm-help vm-test vm-build-
%
18 # All following code might depend on configuration variables
19 ifneq ($(wildcard config-host.mak
),)
20 # Put the all: rule here so that config-host.mak can contain dependencies.
22 include config-host.mak
26 .PHONY
: git-submodule-update
28 git_module_status
:= $(shell \
30 GIT
="$(GIT)" .
/scripts
/git-submodule.sh status
$(GIT_SUBMODULES
); \
34 ifeq (1,$(git_module_status
))
35 ifeq (no
,$(GIT_UPDATE
))
37 $(call quiet-command
, \
39 echo
"GIT submodule checkout is out of date. Please run" && \
40 echo
" scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \
41 echo
"from the source directory checkout $(SRC_PATH)" && \
46 $(call quiet-command
, \
47 (cd
$(SRC_PATH
) && GIT
="$(GIT)" .
/scripts
/git-submodule.sh update
$(GIT_SUBMODULES
)), \
48 "GIT","$(GIT_SUBMODULES)")
52 .git-submodule-status
: git-submodule-update config-host.mak
54 # Check that we're not trying to do an out-of-tree build from
55 # a tree that's been used for an in-tree build.
56 ifneq ($(realpath
$(SRC_PATH
)),$(realpath .
))
57 ifneq ($(wildcard $(SRC_PATH
)/config-host.mak
),)
58 $(error This is an out of tree build but your source tree
($(SRC_PATH
)) \
59 seems to have been used for an in-tree build. You can fix this by running \
60 "$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree
)
64 CONFIG_SOFTMMU
:= $(if
$(filter %-softmmu
,$(TARGET_DIRS
)),y
)
65 CONFIG_USER_ONLY
:= $(if
$(filter %-user
,$(TARGET_DIRS
)),y
)
66 CONFIG_XEN
:= $(CONFIG_XEN_BACKEND
)
68 -include config-all-devices.mak
69 -include config-all-disas.mak
71 config-host.mak
: $(SRC_PATH
)/configure
$(SRC_PATH
)/pc-bios
$(SRC_PATH
)/VERSION
72 @echo
$@ is out-of-date
, running configure
75 # Force configure to re-run if the API symbols are updated
76 ifeq ($(CONFIG_PLUGIN
),y
)
77 config-host.mak
: $(SRC_PATH
)/plugins
/qemu-plugins.symbols
82 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
83 @echo
"Please call configure before running make!"
88 include $(SRC_PATH
)/rules.mak
90 # lor is defined in rules.mak
91 CONFIG_BLOCK
:= $(call lor
,$(CONFIG_SOFTMMU
),$(CONFIG_TOOLS
))
93 # Create QEMU_PKGVERSION and FULL_VERSION strings
94 # If PKGVERSION is set, use that; otherwise get version and -dirty status from git
95 QEMU_PKGVERSION
:= $(if
$(PKGVERSION
),$(PKGVERSION
),$(shell \
97 if
test -e .git
; then \
98 git describe
--match
'v*' 2>/dev
/null | tr
-d
'\n'; \
99 if
! git diff-index
--quiet HEAD
&>/dev
/null
; then \
104 # Either "version (pkgversion)", or just "version" if pkgversion not set
105 FULL_VERSION
:= $(if
$(QEMU_PKGVERSION
),$(VERSION
) ($(QEMU_PKGVERSION
)),$(VERSION
))
107 generated-files-y
= qemu-version.h config-host.h qemu-options.def
109 GENERATED_QAPI_FILES
= qapi
/qapi-builtin-types.h qapi
/qapi-builtin-types.c
110 GENERATED_QAPI_FILES
+= qapi
/qapi-types.h qapi
/qapi-types.c
111 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.h
)
112 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.c
)
113 GENERATED_QAPI_FILES
+= qapi
/qapi-builtin-visit.h qapi
/qapi-builtin-visit.c
114 GENERATED_QAPI_FILES
+= qapi
/qapi-visit.h qapi
/qapi-visit.c
115 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.h
)
116 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.c
)
117 GENERATED_QAPI_FILES
+= qapi
/qapi-init-commands.h qapi
/qapi-init-commands.c
118 GENERATED_QAPI_FILES
+= qapi
/qapi-commands.h qapi
/qapi-commands.c
119 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.h
)
120 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.c
)
121 GENERATED_QAPI_FILES
+= qapi
/qapi-emit-events.h qapi
/qapi-emit-events.c
122 GENERATED_QAPI_FILES
+= qapi
/qapi-events.h qapi
/qapi-events.c
123 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.h
)
124 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.c
)
125 GENERATED_QAPI_FILES
+= qapi
/qapi-introspect.c qapi
/qapi-introspect.h
126 GENERATED_QAPI_FILES
+= qapi
/qapi-doc.texi
128 # The following list considers only the storage daemon main module. All other
129 # modules are currently shared with the main schema, so we don't actually
130 # generate additional files.
132 GENERATED_STORAGE_DAEMON_QAPI_FILES
= storage-daemon
/qapi
/qapi-commands.h
133 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-commands.c
134 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-emit-events.h
135 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-emit-events.c
136 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-events.h
137 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-events.c
138 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-init-commands.h
139 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-init-commands.c
140 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-introspect.h
141 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-introspect.c
142 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-types.h
143 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-types.c
144 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-visit.h
145 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-visit.c
146 GENERATED_STORAGE_DAEMON_QAPI_FILES
+= storage-daemon
/qapi
/qapi-doc.texi
148 generated-files-y
+= $(GENERATED_QAPI_FILES
)
149 generated-files-y
+= $(GENERATED_STORAGE_DAEMON_QAPI_FILES
)
151 generated-files-y
+= trace
/generated-tcg-tracers.h
153 generated-files-y
+= trace
/generated-helpers-wrappers.h
154 generated-files-y
+= trace
/generated-helpers.h
155 generated-files-y
+= trace
/generated-helpers.c
157 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.h
158 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.c
160 generated-files-y
+= module_block.h
162 TRACE_HEADERS
= trace-root.h
$(trace-events-subdirs
:%=%/trace.h
)
163 TRACE_SOURCES
= trace-root.c
$(trace-events-subdirs
:%=%/trace.c
)
165 ifdef CONFIG_TRACE_DTRACE
166 TRACE_HEADERS
+= trace-dtrace-root.h
$(trace-events-subdirs
:%=%/trace-dtrace.h
)
167 TRACE_DTRACE
+= trace-dtrace-root.dtrace
$(trace-events-subdirs
:%=%/trace-dtrace.dtrace
)
169 ifdef CONFIG_TRACE_UST
170 TRACE_HEADERS
+= trace-ust-root.h
$(trace-events-subdirs
:%=%/trace-ust.h
)
173 generated-files-y
+= $(TRACE_HEADERS
)
174 generated-files-y
+= $(TRACE_SOURCES
)
175 generated-files-y
+= $(BUILD_DIR
)/trace-events-all
176 generated-files-y
+= .git-submodule-status
178 trace-group-name
= $(shell dirname
$1 | sed
-e
's/[^a-zA-Z0-9]/_/g')
180 tracetool-y
= $(SRC_PATH
)/scripts
/tracetool.py
181 tracetool-y
+= $(shell find
$(SRC_PATH
)/scripts
/tracetool
-name
"*.py")
183 %/trace.h
: %/trace.h-timestamp
184 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
185 %/trace.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
186 $(call quiet-command
,$(TRACETOOL
) \
187 --group
=$(call trace-group-name
,$@
) \
189 --backends
=$(TRACE_BACKENDS
) \
190 $< > $@
,"GEN","$(@:%-timestamp=%)")
192 %/trace.c
: %/trace.c-timestamp
193 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
194 %/trace.c-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
195 $(call quiet-command
,$(TRACETOOL
) \
196 --group
=$(call trace-group-name
,$@
) \
198 --backends
=$(TRACE_BACKENDS
) \
199 $< > $@
,"GEN","$(@:%-timestamp=%)")
201 %/trace-ust.h
: %/trace-ust.h-timestamp
202 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
203 %/trace-ust.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
204 $(call quiet-command
,$(TRACETOOL
) \
205 --group
=$(call trace-group-name
,$@
) \
206 --format
=ust-events-h \
207 --backends
=$(TRACE_BACKENDS
) \
208 $< > $@
,"GEN","$(@:%-timestamp=%)")
210 %/trace-dtrace.dtrace
: %/trace-dtrace.dtrace-timestamp
211 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
212 %/trace-dtrace.dtrace-timestamp
: $(SRC_PATH
)/%/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
213 $(call quiet-command
,$(TRACETOOL
) \
214 --group
=$(call trace-group-name
,$@
) \
216 --backends
=$(TRACE_BACKENDS
) \
217 $< > $@
,"GEN","$(@:%-timestamp=%)")
219 %/trace-dtrace.h
: %/trace-dtrace.dtrace
$(tracetool-y
)
220 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
222 %/trace-dtrace.o
: %/trace-dtrace.dtrace
$(tracetool-y
)
225 trace-root.h
: trace-root.h-timestamp
226 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
227 trace-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
228 $(call quiet-command
,$(TRACETOOL
) \
231 --backends
=$(TRACE_BACKENDS
) \
232 $< > $@
,"GEN","$(@:%-timestamp=%)")
234 trace-root.c
: trace-root.c-timestamp
235 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
236 trace-root.c-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
237 $(call quiet-command
,$(TRACETOOL
) \
240 --backends
=$(TRACE_BACKENDS
) \
241 $< > $@
,"GEN","$(@:%-timestamp=%)")
243 trace-ust-root.h
: trace-ust-root.h-timestamp
244 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
245 trace-ust-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
246 $(call quiet-command
,$(TRACETOOL
) \
248 --format
=ust-events-h \
249 --backends
=$(TRACE_BACKENDS
) \
250 $< > $@
,"GEN","$(@:%-timestamp=%)")
252 trace-ust-all.h
: trace-ust-all.h-timestamp
253 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
254 trace-ust-all.h-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
255 $(call quiet-command
,$(TRACETOOL
) \
257 --format
=ust-events-h \
258 --backends
=$(TRACE_BACKENDS
) \
259 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
261 trace-ust-all.c
: trace-ust-all.c-timestamp
262 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
263 trace-ust-all.c-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
264 $(call quiet-command
,$(TRACETOOL
) \
266 --format
=ust-events-c \
267 --backends
=$(TRACE_BACKENDS
) \
268 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
270 trace-dtrace-root.dtrace
: trace-dtrace-root.dtrace-timestamp
271 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
272 trace-dtrace-root.dtrace-timestamp
: $(SRC_PATH
)/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
273 $(call quiet-command
,$(TRACETOOL
) \
276 --backends
=$(TRACE_BACKENDS
) \
277 $< > $@
,"GEN","$(@:%-timestamp=%)")
279 trace-dtrace-root.h
: trace-dtrace-root.dtrace
280 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
282 trace-dtrace-root.o
: trace-dtrace-root.dtrace
284 KEYCODEMAP_GEN
= $(SRC_PATH
)/ui
/keycodemapdb
/tools
/keymap-gen
285 KEYCODEMAP_CSV
= $(SRC_PATH
)/ui
/keycodemapdb
/data
/keymaps.csv
288 ui
/input-keymap-atset1-to-qcode.c \
289 ui
/input-keymap-linux-to-qcode.c \
290 ui
/input-keymap-qcode-to-atset1.c \
291 ui
/input-keymap-qcode-to-atset2.c \
292 ui
/input-keymap-qcode-to-atset3.c \
293 ui
/input-keymap-qcode-to-linux.c \
294 ui
/input-keymap-qcode-to-qnum.c \
295 ui
/input-keymap-qcode-to-sun.c \
296 ui
/input-keymap-qnum-to-qcode.c \
297 ui
/input-keymap-usb-to-qcode.c \
298 ui
/input-keymap-win32-to-qcode.c \
299 ui
/input-keymap-x11-to-qcode.c \
300 ui
/input-keymap-xorgevdev-to-qcode.c \
301 ui
/input-keymap-xorgkbd-to-qcode.c \
302 ui
/input-keymap-xorgxquartz-to-qcode.c \
303 ui
/input-keymap-xorgxwin-to-qcode.c \
304 ui
/input-keymap-osx-to-qcode.c \
307 generated-files-
$(CONFIG_SOFTMMU
) += $(KEYCODEMAP_FILES
)
309 ui
/input-keymap-
%.c
: $(KEYCODEMAP_GEN
) $(KEYCODEMAP_CSV
) $(SRC_PATH
)/ui
/Makefile.objs
310 $(call quiet-command
,\
311 stem
=$* && src
=$${stem
%-to-
*} dst
=$${stem
#*-to-} && \
312 test -e
$(KEYCODEMAP_GEN
) && \
313 $(PYTHON
) $(KEYCODEMAP_GEN
) \
315 --varname qemu_input_map_
$${src}_to_
$${dst} \
316 code-map
$(KEYCODEMAP_CSV
) $${src} $${dst} \
317 > $@ ||
rm -f
$@
, "GEN", "$@")
319 $(KEYCODEMAP_GEN
): .git-submodule-status
320 $(KEYCODEMAP_CSV
): .git-submodule-status
322 edk2-decompressed
= $(basename $(wildcard pc-bios
/edk2-
*.fd.bz2
))
323 pc-bios
/edk2-
%.fd
: pc-bios
/edk2-
%.fd.bz2
324 $(call quiet-command
,bzip2
-d
-c
$< > $@
,"BUNZIP2",$<)
326 # Don't try to regenerate Makefile or configure
327 # We don't generate any of them
331 .PHONY
: all clean cscope
distclean html
info install install-doc \
332 pdf txt recurse-all
dist msi FORCE
334 $(call set-vpath
, $(SRC_PATH
))
336 LIBS
+=-lz
$(LIBS_TOOLS
)
341 HELPERS-
$(call land
,$(CONFIG_SOFTMMU
),$(CONFIG_LINUX
)) = qemu-bridge-helper
$(EXESUF
)
343 ifeq ($(CONFIG_LINUX
)$(CONFIG_VIRGL
)$(CONFIG_GBM
)$(CONFIG_TOOLS
),yyyy
)
344 HELPERS-y
+= vhost-user-gpu
$(EXESUF
)
345 vhost-user-json-y
+= contrib
/vhost-user-gpu
/50-qemu-gpu.json
348 ifeq ($(CONFIG_LINUX
)$(CONFIG_SECCOMP
)$(CONFIG_LIBCAP_NG
),yyy
)
349 HELPERS-y
+= virtiofsd
$(EXESUF
)
350 vhost-user-json-y
+= tools
/virtiofsd
/50-qemu-virtiofsd.json
353 # Sphinx does not allow building manuals into the same directory as
354 # the source files, so if we're doing an in-tree QEMU build we must
355 # build the manuals into a subdirectory (and then install them from
356 # there for 'make install'). For an out-of-tree build we can just
357 # use the docs/ subdirectory in the build tree as normal.
358 ifeq ($(realpath
$(SRC_PATH
)),$(realpath .
))
359 MANUAL_BUILDDIR
:= docs
/built
361 MANUAL_BUILDDIR
:= docs
365 DOCS
+=$(MANUAL_BUILDDIR
)/system
/qemu
.1
366 DOCS
+=$(MANUAL_BUILDDIR
)/tools
/qemu-img
.1
367 DOCS
+=$(MANUAL_BUILDDIR
)/tools
/qemu-nbd
.8
368 DOCS
+=$(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8
369 ifeq ($(CONFIG_LINUX
)$(CONFIG_SECCOMP
)$(CONFIG_LIBCAP_NG
),yyy
)
370 DOCS
+=$(MANUAL_BUILDDIR
)/tools
/virtiofsd
.1
372 DOCS
+=$(MANUAL_BUILDDIR
)/system
/qemu-block-drivers
.7
373 DOCS
+=docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7
374 DOCS
+=docs
/interop
/qemu-ga-ref.html docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7
375 DOCS
+=$(MANUAL_BUILDDIR
)/system
/qemu-cpu-models
.7
376 DOCS
+=$(MANUAL_BUILDDIR
)/index.html
378 DOCS
+=$(MANUAL_BUILDDIR
)/tools
/virtfs-proxy-helper
.1
380 ifdef CONFIG_TRACE_SYSTEMTAP
381 DOCS
+=$(MANUAL_BUILDDIR
)/tools
/qemu-trace-stap
.1
387 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
--quiet
) BUILD_DIR
=$(BUILD_DIR
)
388 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(filter %-softmmu
, $(TARGET_DIRS
)))
389 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %.d
, $(SUBDIR_DEVICES_MAK
))
391 ifeq ($(SUBDIR_DEVICES_MAK
),)
392 config-all-devices.mak
: config-host.mak
393 $(call quiet-command
,echo
'# no devices' > $@
,"GEN","$@")
395 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
) config-host.mak
396 $(call quiet-command
, sed
-n \
397 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
398 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
402 -include $(SUBDIR_DEVICES_MAK_DEP
)
404 # This has to be kept in sync with Kconfig.host.
406 $(CONFIG_MINIKCONF_MODE
) \
407 $@
$*/config-devices.mak.d
$< $(MINIKCONF_INPUTS
) \
408 CONFIG_KVM
=$(CONFIG_KVM
) \
409 CONFIG_SPICE
=$(CONFIG_SPICE
) \
410 CONFIG_IVSHMEM
=$(CONFIG_IVSHMEM
) \
411 CONFIG_TPM
=$(CONFIG_TPM
) \
412 CONFIG_XEN
=$(CONFIG_XEN
) \
413 CONFIG_OPENGL
=$(CONFIG_OPENGL
) \
414 CONFIG_X11
=$(CONFIG_X11
) \
415 CONFIG_VHOST_USER
=$(CONFIG_VHOST_USER
) \
416 CONFIG_VHOST_KERNEL
=$(CONFIG_VHOST_KERNEL
) \
417 CONFIG_VIRTFS
=$(CONFIG_VIRTFS
) \
418 CONFIG_LINUX
=$(CONFIG_LINUX
) \
419 CONFIG_PVRDMA
=$(CONFIG_PVRDMA
)
421 MINIKCONF_INPUTS
= $(SRC_PATH
)/Kconfig.host
$(SRC_PATH
)/hw
/Kconfig
422 MINIKCONF_DEPS
= $(MINIKCONF_INPUTS
) $(wildcard $(SRC_PATH
)/hw
/*/Kconfig
)
423 MINIKCONF
= $(PYTHON
) $(SRC_PATH
)/scripts
/minikconf.py \
425 $(SUBDIR_DEVICES_MAK
): %/config-devices.mak
: default-configs
/%.mak
$(MINIKCONF_DEPS
) $(BUILD_DIR
)/config-host.mak
426 $(call quiet-command
, $(MINIKCONF
) $(MINIKCONF_ARGS
) > $@.tmp
, "GEN", "$@.tmp")
427 $(call quiet-command
, if
test -f
$@
; then \
428 if cmp
-s
$@.old
$@
; then \
432 if
test -f
$@.old
; then \
433 echo
"WARNING: $@ (user modified) out of date.";\
435 echo
"WARNING: $@ out of date.";\
437 echo
"Run \"$(MAKE) defconfig\" to regenerate."; \
446 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
448 ifneq ($(wildcard config-host.mak
),)
449 include $(SRC_PATH
)/Makefile.objs
452 dummy
:= $(call unnest-vars
,, \
459 ivshmem-client-obj-y \
460 ivshmem-server-obj-y \
463 libvhost-user-obj-y \
464 vhost-user-scsi-obj-y \
465 vhost-user-blk-obj-y \
466 vhost-user-input-obj-y \
467 vhost-user-gpu-obj-y \
471 storage-daemon-obj-y \
472 storage-daemon-obj-m \
480 include $(SRC_PATH
)/tests
/Makefile.
include
482 all: $(DOCS
) $(if
$(BUILD_DOCS
),sphinxdocs
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
$(vhost-user-json-y
)
484 qemu-version.h
: FORCE
485 $(call quiet-command
, \
486 (printf
'#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
487 printf
'#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
489 $(call quiet-command
, if
! cmp
-s
$@
$@.tmp
; then \
495 config-host.h
: config-host.h-timestamp
496 config-host.h-timestamp
: config-host.mak
497 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
498 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
500 TARGET_DIRS_RULES
:= $(foreach t
, all fuzz
clean install, $(addsuffix /$(t
), $(TARGET_DIRS
)))
502 SOFTMMU_ALL_RULES
=$(filter %-softmmu
/all, $(TARGET_DIRS_RULES
))
503 $(SOFTMMU_ALL_RULES
): $(authz-obj-y
)
504 $(SOFTMMU_ALL_RULES
): $(block-obj-y
)
505 $(SOFTMMU_ALL_RULES
): $(storage-daemon-obj-y
)
506 $(SOFTMMU_ALL_RULES
): $(chardev-obj-y
)
507 $(SOFTMMU_ALL_RULES
): $(crypto-obj-y
)
508 $(SOFTMMU_ALL_RULES
): $(io-obj-y
)
509 $(SOFTMMU_ALL_RULES
): config-all-devices.mak
510 ifdef DECOMPRESS_EDK2_BLOBS
511 $(SOFTMMU_ALL_RULES
): $(edk2-decompressed
)
514 SOFTMMU_FUZZ_RULES
=$(filter %-softmmu
/fuzz
, $(TARGET_DIRS_RULES
))
515 $(SOFTMMU_FUZZ_RULES
): $(authz-obj-y
)
516 $(SOFTMMU_FUZZ_RULES
): $(block-obj-y
)
517 $(SOFTMMU_FUZZ_RULES
): $(chardev-obj-y
)
518 $(SOFTMMU_FUZZ_RULES
): $(crypto-obj-y
)
519 $(SOFTMMU_FUZZ_RULES
): $(io-obj-y
)
520 $(SOFTMMU_FUZZ_RULES
): config-all-devices.mak
521 $(SOFTMMU_FUZZ_RULES
): $(edk2-decompressed
)
523 .PHONY
: $(TARGET_DIRS_RULES
)
524 # The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
525 # $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
526 $(TARGET_DIRS_RULES
):
527 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" $(notdir $@
),)
529 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
530 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
531 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
534 dtc
/all: .git-submodule-status dtc
/libfdt dtc
/tests
535 $(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
/libfdt.a
,)
537 dtc
/%: .git-submodule-status
540 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
541 # Not overriding CFLAGS leads to mis-matches between compilation modes.
542 # Therefore we replicate some of the logic in the sub-makefile.
543 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
544 # no need to annoy QEMU developers with such things.
545 CAP_CFLAGS
= $(patsubst -W
%,,$(CFLAGS
) $(QEMU_CFLAGS
))
546 CAP_CFLAGS
+= -DCAPSTONE_USE_SYS_DYN_MEM
547 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM
548 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM64
549 CAP_CFLAGS
+= -DCAPSTONE_HAS_POWERPC
550 CAP_CFLAGS
+= -DCAPSTONE_HAS_X86
553 capstone
/all: .git-submodule-status
554 $(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
))
557 slirp
/all: .git-submodule-status
558 $(call quiet-command
,$(MAKE
) -C
$(SRC_PATH
)/slirp \
559 BUILD_DIR
="$(BUILD_DIR)/slirp" \
560 PKG_CONFIG
="$(PKG_CONFIG)" \
561 CC
="$(CC)" AR
="$(AR)" LD
="$(LD)" RANLIB
="$(RANLIB)" \
562 CFLAGS
="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS
="$(QEMU_LDFLAGS)")
564 # Compatibility gunk to keep make working across the rename of targets
565 # for recursion, to be removed some time after 4.1.
567 subdir-capstone
: capstone
/all
568 subdir-slirp
: slirp
/all
570 $(filter %/all, $(TARGET_DIRS_RULES
)): libqemuutil.a
$(common-obj-y
) \
573 $(filter %/fuzz
, $(TARGET_DIRS_RULES
)): libqemuutil.a
$(common-obj-y
) \
574 $(qom-obj-y
) $(crypto-user-obj-
$(CONFIG_USER_ONLY
))
576 ROM_DIRS
= $(addprefix pc-bios
/, $(ROMS
))
577 ROM_DIRS_RULES
=$(foreach t
, all clean, $(addsuffix /$(t
), $(ROM_DIRS
)))
578 # Only keep -O and -g cflags
579 .PHONY
: $(ROM_DIRS_RULES
)
581 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$(dir $@
) V
="$(V)" TARGET_DIR
="$(dir $@)" CFLAGS
="$(filter -O% -g%,$(CFLAGS))" $(notdir $@
),)
583 .PHONY
: recurse-all recurse-clean recurse-install
584 recurse-all
: $(addsuffix /all, $(TARGET_DIRS
) $(ROM_DIRS
))
585 recurse-fuzz
: $(addsuffix /fuzz
, $(TARGET_DIRS
) $(ROM_DIRS
))
586 recurse-clean
: $(addsuffix /clean, $(TARGET_DIRS
) $(ROM_DIRS
))
587 recurse-install
: $(addsuffix /install, $(TARGET_DIRS
))
588 $(addsuffix /install, $(TARGET_DIRS
)): all
590 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc config-host.h
591 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<,"RC","version.o")
593 Makefile
: $(version-obj-y
)
595 ######################################################################
598 libqemuutil.a
: $(util-obj-y
) $(trace-obj-y
) $(stub-obj-y
)
599 libvhost-user.a
: $(libvhost-user-obj-y
) $(util-obj-y
) $(stub-obj-y
)
601 ######################################################################
603 COMMON_LDADDS
= libqemuutil.a
605 qemu-img.o
: qemu-img-cmds.h
607 qemu-img
$(EXESUF
): qemu-img.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
608 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
609 qemu-io
$(EXESUF
): qemu-io.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
610 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
)
612 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
$(COMMON_LDADDS
)
614 qemu-keymap
$(EXESUF
): qemu-keymap.o ui
/input-keymap.o
$(COMMON_LDADDS
)
616 qemu-edid
$(EXESUF
): qemu-edid.o hw
/display
/edid-generate.o
$(COMMON_LDADDS
)
618 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/9p-marshal.o fsdev
/9p-iov-marshal.o
$(COMMON_LDADDS
)
620 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
)
622 scsi
/qemu-pr-helper
$(EXESUF
): LIBS
+= -ludev
-lmultipath
-lmpathpersist
625 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
626 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
628 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
629 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
631 qemu-keymap
$(EXESUF
): LIBS
+= $(XKBCOMMON_LIBS
)
632 qemu-keymap
$(EXESUF
): QEMU_CFLAGS
+= $(XKBCOMMON_CFLAGS
)
634 qapi-py
= $(SRC_PATH
)/scripts
/qapi
/__init__.py \
635 $(SRC_PATH
)/scripts
/qapi
/commands.py \
636 $(SRC_PATH
)/scripts
/qapi
/common.py \
637 $(SRC_PATH
)/scripts
/qapi
/doc.py \
638 $(SRC_PATH
)/scripts
/qapi
/error.py \
639 $(SRC_PATH
)/scripts
/qapi
/events.py \
640 $(SRC_PATH
)/scripts
/qapi
/expr.py \
641 $(SRC_PATH
)/scripts
/qapi
/gen.py \
642 $(SRC_PATH
)/scripts
/qapi
/introspect.py \
643 $(SRC_PATH
)/scripts
/qapi
/parser.py \
644 $(SRC_PATH
)/scripts
/qapi
/schema.py \
645 $(SRC_PATH
)/scripts
/qapi
/source.py \
646 $(SRC_PATH
)/scripts
/qapi
/types.py \
647 $(SRC_PATH
)/scripts
/qapi
/visit.py \
648 $(SRC_PATH
)/scripts
/qapi-gen.py
650 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h \
651 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h \
652 qga
/qapi-generated
/qga-qapi-commands.h qga
/qapi-generated
/qga-qapi-commands.c \
653 qga
/qapi-generated
/qga-qapi-init-commands.h qga
/qapi-generated
/qga-qapi-init-commands.c \
654 qga
/qapi-generated
/qga-qapi-doc.texi
: \
655 qga
/qapi-generated
/qapi-gen-timestamp
;
656 qga
/qapi-generated
/qapi-gen-timestamp
: $(SRC_PATH
)/qga
/qapi-schema.json
$(qapi-py
)
657 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
658 -o qga
/qapi-generated
-p
"qga-" $<, \
659 "GEN","$(@:%-timestamp=%)")
662 qapi-modules
= $(SRC_PATH
)/qapi
/qapi-schema.json \
663 $(QAPI_MODULES
:%=$(SRC_PATH
)/qapi
/%.json
)
665 $(GENERATED_QAPI_FILES
): qapi-gen-timestamp
;
666 qapi-gen-timestamp
: $(qapi-modules
) $(qapi-py
)
667 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
669 "GEN","$(@:%-timestamp=%)")
672 qapi-modules-storage-daemon
= \
673 $(SRC_PATH
)/storage-daemon
/qapi
/qapi-schema.json \
674 $(QAPI_MODULES_STORAGE_DAEMON
:%=$(SRC_PATH
)/qapi
/%.json
)
676 $(GENERATED_STORAGE_DAEMON_QAPI_FILES
): storage-daemon
/qapi
/qapi-gen-timestamp
;
677 storage-daemon
/qapi
/qapi-gen-timestamp
: $(qapi-modules-storage-daemon
) $(qapi-py
)
678 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
679 -o
"storage-daemon/qapi" $<, \
680 "GEN","$(@:%-timestamp=%)")
683 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h qga-qapi-init-commands.h
)
684 $(qga-obj-y
): $(QGALIB_GEN
)
686 qemu-ga
$(EXESUF
): $(qga-obj-y
) $(COMMON_LDADDS
)
689 ifdef QEMU_GA_MSI_ENABLED
690 QEMU_GA_MSI
=qemu-ga-
$(ARCH
).msi
694 $(QEMU_GA_MSI
): qemu-ga.exe
$(QGA_VSS_PROVIDER
)
696 $(QEMU_GA_MSI
): config-host.mak
698 $(QEMU_GA_MSI
): $(SRC_PATH
)/qga
/installer
/qemu-ga.wxs
699 $(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)" \
700 wixl
-o
$@
$(QEMU_GA_MSI_ARCH
) $(QEMU_GA_MSI_WITH_VSS
) $(QEMU_GA_MSI_MINGW_DLL_PATH
) $<,"WIXL","$@")
703 @echo
"MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
708 qemu-ga
: qemu-ga
$(EXESUF
) $(QGA_VSS_PROVIDER
) $(QEMU_GA_MSI
)
711 elf2dmp
$(EXESUF
): $(elf2dmp-obj-y
)
715 ivshmem-client
$(EXESUF
): $(ivshmem-client-obj-y
) $(COMMON_LDADDS
)
717 ivshmem-server
$(EXESUF
): $(ivshmem-server-obj-y
) $(COMMON_LDADDS
)
720 vhost-user-scsi
$(EXESUF
): $(vhost-user-scsi-obj-y
) libvhost-user.a
722 vhost-user-blk
$(EXESUF
): $(vhost-user-blk-obj-y
) libvhost-user.a
725 rdmacm-mux
$(EXESUF
): LIBS
+= "-libumad"
726 rdmacm-mux
$(EXESUF
): $(rdmacm-mux-obj-y
) $(COMMON_LDADDS
)
729 # relies on Linux-specific syscalls
730 ifeq ($(CONFIG_LINUX
)$(CONFIG_SECCOMP
)$(CONFIG_LIBCAP_NG
),yyy
)
731 virtiofsd
$(EXESUF
): $(virtiofsd-obj-y
) libvhost-user.a
$(COMMON_LDADDS
)
735 vhost-user-gpu
$(EXESUF
): $(vhost-user-gpu-obj-y
) $(libvhost-user-obj-y
) libqemuutil.a libqemustub.a
738 ifdef CONFIG_VHOST_USER_INPUT
740 vhost-user-input
$(EXESUF
): $(vhost-user-input-obj-y
) libvhost-user.a libqemuutil.a
743 # build by default, do not install
744 all: vhost-user-input
$(EXESUF
)
748 module_block.h
: $(SRC_PATH
)/scripts
/modules
/module_block.py config-host.mak
749 $(call quiet-command
,$(PYTHON
) $< $@ \
750 $(addprefix $(SRC_PATH
)/,$(patsubst %.mo
,%.c
,$(block-obj-m
))), \
754 .PHONY
: clean-coverage
756 $(call quiet-command
, \
757 find . \
( -name
'*.gcda' -o
-name
'*.gcov' \
) -type f
-exec
rm {} +, \
758 "CLEAN", "coverage files")
762 # avoid old build problems by removing potentially incorrect old files
763 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
764 rm -f qemu-options.def
766 find . \
( -name
'*.so' -o
-name
'*.dll' -o
-name
'*.mo' -o
-name
'*.[oda]' \
) -type f \
767 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-aarch64.a \
768 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-arm.a \
769 ! -path .
/roms
/edk2
/BaseTools
/Source
/Python
/UPT
/Dll
/sqlite3.dll \
771 rm -f
$(edk2-decompressed
)
772 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) TAGS cscope.
* *.pod
*~
*/*~
773 rm -f fsdev
/*.pod scsi
/*.pod
774 rm -f qemu-img-cmds.h
775 rm -f ui
/shader
/*-vert.h ui
/shader
/*-frag.h
776 @
# May not be present in generated-files-y
777 rm -f trace
/generated-tracers-dtrace.dtrace
*
778 rm -f trace
/generated-tracers-dtrace.h
*
779 rm -f
$(foreach f
,$(generated-files-y
),$(f
) $(f
)-timestamp
)
780 rm -f qapi-gen-timestamp
781 rm -f storage-daemon
/qapi
/qapi-gen-timestamp
782 rm -rf qga
/qapi-generated
783 rm -f config-all-devices.mak
785 VERSION ?
= $(shell cat VERSION
)
787 dist: qemu-
$(VERSION
).
tar.bz2
790 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
792 define clean-manual
=
793 rm -rf
$(MANUAL_BUILDDIR
)/$1/_static
794 rm -f
$(MANUAL_BUILDDIR
)/$1/objects.inv
$(MANUAL_BUILDDIR
)/$1/searchindex.js
$(MANUAL_BUILDDIR
)/$1/*.html
798 rm -f config-host.mak config-host.h
* config-host.
ld $(DOCS
)
799 rm -f tests
/tcg
/config-
*.mak
800 rm -f config-all-devices.mak config-all-disas.mak config.status
801 rm -f
$(SUBDIR_DEVICES_MAK
)
802 rm -f po
/*.mo tests
/qemu-iotests
/common.env
803 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
804 rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
806 rm -f linux-headers
/asm
807 rm -f docs
/version.texi
808 rm -f docs
/interop
/qemu-ga-qapi.texi docs
/interop
/qemu-qmp-qapi.texi
809 rm -f docs
/interop
/qemu-qmp-ref
.7 docs
/interop
/qemu-ga-ref
.7
810 rm -f docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
811 rm -f docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
812 rm -f docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html
814 $(call clean-manual
,devel
)
815 $(call clean-manual
,interop
)
816 $(call clean-manual
,specs
)
817 $(call clean-manual
,system
)
818 $(call clean-manual
,tools
)
819 $(call clean-manual
,user
)
820 for d in
$(TARGET_DIRS
); do \
821 rm -rf
$$d || exit
1 ; \
824 if
test -f dtc
/version_gen.h
; then
$(MAKE
) $(DTC_MAKE_ARGS
) clean; fi
826 KEYMAPS
=da en-gb et fr fr-ch is lt no pt-br sv \
827 ar de en-us fi fr-be hr it lv nl pl ru th \
828 de-ch es fo fr-ca hu ja mk pt sl tr \
832 BLOBS
=bios.bin bios-256k.bin bios-microvm.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
833 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
834 vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
835 openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
836 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
837 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
838 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
839 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
840 efi-e1000e.rom efi-vmxnet3.rom \
842 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
843 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
844 s390-ccw.img s390-netboot.img \
845 slof.bin skiboot.lid \
847 u-boot.e500 u-boot-sam460-20100605.bin \
851 opensbi-riscv32-sifive_u-fw_jump.bin opensbi-riscv32-virt-fw_jump.bin \
852 opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
855 DESCS
=50-edk2-i386-secure.json
50-edk2-x86_64-secure.json \
856 60-edk2-aarch64.json
60-edk2-arm.json
60-edk2-i386.json
60-edk2-x86_64.json
862 # Note that we manually filter-out the non-Sphinx documentation which
863 # is currently built into the docs/interop directory in the build tree,
864 # and also any sphinx-built manpages.
865 define install-manual
=
866 for d in
$$(cd
$(MANUAL_BUILDDIR
) && find
$1 -type d
); do
$(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)/$$d"; done
867 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
870 # Note that we deliberately do not install the "devel" manual: it is
871 # for QEMU developers, and not interesting to our users.
872 .PHONY
: install-sphinxdocs
873 install-sphinxdocs
: sphinxdocs
874 $(call install-manual
,interop
)
875 $(call install-manual
,specs
)
876 $(call install-manual
,system
)
877 $(call install-manual
,tools
)
878 $(call install-manual
,user
)
880 install-doc
: $(DOCS
) install-sphinxdocs
881 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
882 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/index.html
"$(DESTDIR)$(qemu_docdir)"
883 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.html
"$(DESTDIR)$(qemu_docdir)"
884 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.txt
"$(DESTDIR)$(qemu_docdir)"
886 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
887 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/system
/qemu
.1 "$(DESTDIR)$(mandir)/man1"
888 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man7"
889 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref
.7 "$(DESTDIR)$(mandir)/man7"
890 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/system
/qemu-block-drivers
.7 "$(DESTDIR)$(mandir)/man7"
891 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/system
/qemu-cpu-models
.7 "$(DESTDIR)$(mandir)/man7"
892 ifeq ($(CONFIG_TOOLS
),y
)
893 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/tools
/qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
894 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
895 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/tools
/qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
897 ifdef CONFIG_TRACE_SYSTEMTAP
898 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/tools
/qemu-trace-stap
.1 "$(DESTDIR)$(mandir)/man1"
900 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
901 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/interop
/qemu-ga
.8 "$(DESTDIR)$(mandir)/man8"
902 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.html
"$(DESTDIR)$(qemu_docdir)"
903 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.txt
"$(DESTDIR)$(qemu_docdir)"
904 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref
.7 "$(DESTDIR)$(mandir)/man7"
908 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
909 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/tools
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
911 ifeq ($(CONFIG_LINUX
)$(CONFIG_SECCOMP
)$(CONFIG_LIBCAP_NG
),yyy
)
912 $(INSTALL_DATA
) $(MANUAL_BUILDDIR
)/tools
/virtiofsd
.1 "$(DESTDIR)$(mandir)/man1"
916 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
918 install-localstatedir
:
920 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
921 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
925 ICON_SIZES
=16x16
24x24
32x32
48x48
64x64
128x128
256x256
512x512
928 $(INSTALL_DIR
) "$(DESTDIR)$(includedir)"
930 install: all $(if
$(BUILD_DOCS
),install-doc
) \
931 install-datadir install-localstatedir install-includedir \
932 $(if
$(INSTALL_BLOBS
),$(edk2-decompressed
)) \
935 $(call install-prog
,$(TOOLS
),$(DESTDIR
)$(bindir))
937 ifneq ($(CONFIG_MODULES
),)
938 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
939 for s in
$(modules-m
:.mo
=$(DSOSUF
)); do \
940 t
="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
941 $(INSTALL_LIB
) $$s "$$t"; \
942 test -z
"$(STRIP)" ||
$(STRIP
) "$$t"; \
945 ifneq ($(HELPERS-y
),)
946 $(call install-prog
,$(HELPERS-y
),$(DESTDIR
)$(libexecdir
))
948 ifneq ($(vhost-user-json-y
),)
949 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/vhost-user/"
950 for x in
$(vhost-user-json-y
); do \
951 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)/vhost-user/"; \
954 ifdef CONFIG_TRACE_SYSTEMTAP
955 $(INSTALL_PROG
) "scripts/qemu-trace-stap" $(DESTDIR
)$(bindir)
958 set
-e
; for x in
$(BLOBS
); do \
959 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
963 set
-e
; for x in
$(edk2-decompressed
); do \
964 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)"; \
968 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/firmware"
969 set
-e
; tmpf
=$$(mktemp
); trap
'rm -f -- "$$tmpf"' EXIT
; \
970 for x in
$(DESCS
); do \
971 sed
-e
's,@DATADIR@,$(qemu_datadir),' \
972 "$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
973 $(INSTALL_DATA
) "$$tmpf" \
974 "$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
977 for s in
$(ICON_SIZES
); do \
978 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
979 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_
$${s}.png \
980 "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
982 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
983 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_32x32.bmp \
984 "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
985 mkdir
-p
"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
986 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu.svg \
987 "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
988 mkdir
-p
"$(DESTDIR)$(qemu_desktopdir)"
989 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/qemu.desktop \
990 "$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
994 ifeq ($(CONFIG_PLUGIN
),y
)
995 $(INSTALL_DATA
) $(SRC_PATH
)/include/qemu
/qemu-plugin.h
"$(DESTDIR)$(includedir)/qemu-plugin.h"
997 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
998 set
-e
; for x in
$(KEYMAPS
); do \
999 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
1001 $(INSTALL_DATA
) $(BUILD_DIR
)/trace-events-all
"$(DESTDIR)$(qemu_datadir)/trace-events-all"
1006 find
"$(SRC_PATH)" -name
'*.[hc]' -exec ctags
--append
{} +
1011 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
1014 rm -f
"$(SRC_PATH)"/cscope.
*
1015 find
"$(SRC_PATH)/" -name
"*.[chsS]" -print | sed
's,^\./,,' > "$(SRC_PATH)/cscope.files"
1016 cscope
-b
-i
"$(SRC_PATH)/cscope.files"
1018 # opengl shader programs
1019 ui
/shader
/%-vert.h
: $(SRC_PATH
)/ui
/shader
/%.vert
$(SRC_PATH
)/scripts
/shaderinclude.pl
1021 $(call quiet-command
,\
1022 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
1025 ui
/shader
/%-frag.h
: $(SRC_PATH
)/ui
/shader
/%.frag
$(SRC_PATH
)/scripts
/shaderinclude.pl
1027 $(call quiet-command
,\
1028 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
1031 ui
/shader.o
: $(SRC_PATH
)/ui
/shader.c \
1032 ui
/shader
/texture-blit-vert.h \
1033 ui
/shader
/texture-blit-flip-vert.h \
1034 ui
/shader
/texture-blit-frag.h
1038 MAKEINFOINCLUDES
= -I docs
-I
$(<D
) -I
$(@D
)
1039 MAKEINFOFLAGS
=--no-split
--number-sections
$(MAKEINFOINCLUDES
)
1040 TEXI2PODFLAGS
=$(MAKEINFOINCLUDES
) -DVERSION
="$(VERSION)" -DCONFDIR
="$(qemu_confdir)"
1041 TEXI2PDFFLAGS
=$(if
$(V
),,--quiet
) -I
$(SRC_PATH
) $(MAKEINFOINCLUDES
)
1043 docs
/version.texi
: $(SRC_PATH
)/VERSION config-host.mak
1044 $(call quiet-command
,(\
1045 echo
"@set VERSION $(VERSION)" && \
1046 echo
"@set CONFDIR $(qemu_confdir)" \
1049 %.html
: %.texi docs
/version.texi
1050 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
1051 --html
$< -o
$@
,"GEN","$@")
1053 %.
info: %.texi docs
/version.texi
1054 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) $< -o
$@
,"GEN","$@")
1056 %.txt
: %.texi docs
/version.texi
1057 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
1058 --plaintext
$< -o
$@
,"GEN","$@")
1060 %.pdf
: %.texi docs
/version.texi
1061 $(call quiet-command
,texi2pdf
$(TEXI2PDFFLAGS
) $< -o
$@
,"GEN","$@")
1063 # Sphinx builds all its documentation at once in one invocation
1064 # and handles "don't rebuild things unless necessary" itself.
1065 # The '.doctrees' files are cached information to speed this up.
1067 sphinxdocs
: $(MANUAL_BUILDDIR
)/devel
/index.html \
1068 $(MANUAL_BUILDDIR
)/interop
/index.html \
1069 $(MANUAL_BUILDDIR
)/specs
/index.html \
1070 $(MANUAL_BUILDDIR
)/system
/index.html \
1071 $(MANUAL_BUILDDIR
)/tools
/index.html \
1072 $(MANUAL_BUILDDIR
)/user
/index.html
1074 # Canned command to build a single manual
1075 # Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
1076 # Note the use of different doctree for each (manual, builder) tuple;
1077 # this works around Sphinx not handling parallel invocation on
1078 # a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
1079 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")
1080 # We assume all RST files in the manual's directory are used in it
1081 manual-deps
= $(wildcard $(SRC_PATH
)/docs
/$1/*.rst
$(SRC_PATH
)/docs
/$1/*/*.rst
) \
1082 $(SRC_PATH
)/docs
/defs.rst.inc \
1083 $(SRC_PATH
)/docs
/$1/conf.py
$(SRC_PATH
)/docs
/conf.py \
1084 $(SRC_PATH
)/docs
/sphinx
/*.py
1085 # Macro to write out the rule and dependencies for building manpages
1086 # Usage: $(call define-manpage-rule,manualname,manpage1 manpage2...[,extradeps])
1087 # 'extradeps' is optional, and specifies extra files (eg .hx files) that
1088 # the manual page depends on.
1089 define define-manpage-rule
1090 $(call atomic
,$(foreach manpage
,$2,$(MANUAL_BUILDDIR
)/$1/$(manpage
)),$(call manual-deps
,$1) $3)
1091 $(call build-manual
,$1,man
)
1094 $(MANUAL_BUILDDIR
)/devel
/index.html
: $(call manual-deps
,devel
)
1095 $(call build-manual
,devel
,html
)
1097 $(MANUAL_BUILDDIR
)/interop
/index.html
: $(call manual-deps
,interop
)
1098 $(call build-manual
,interop
,html
)
1100 $(MANUAL_BUILDDIR
)/specs
/index.html
: $(call manual-deps
,specs
)
1101 $(call build-manual
,specs
,html
)
1103 $(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
1104 $(call build-manual
,system
,html
)
1106 $(MANUAL_BUILDDIR
)/tools
/index.html
: $(call manual-deps
,tools
) $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/docs
/qemu-option-trace.rst.inc
1107 $(call build-manual
,tools
,html
)
1109 $(MANUAL_BUILDDIR
)/user
/index.html
: $(call manual-deps
,user
)
1110 $(call build-manual
,user
,html
)
1112 $(call define-manpage-rule
,interop
,qemu-ga
.8)
1114 $(call define-manpage-rule
,system
,qemu
.1 qemu-block-drivers
.7 qemu-cpu-models
.7)
1116 $(call define-manpage-rule
,tools
,\
1117 qemu-img
.1 qemu-nbd
.8 qemu-trace-stap
.1\
1118 virtiofsd
.1 virtfs-proxy-helper
.1,\
1119 $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/docs
/qemu-option-trace.rst.inc
)
1121 $(MANUAL_BUILDDIR
)/index.html
: $(SRC_PATH
)/docs
/index.html.in qemu-version.h
1122 @mkdir
-p
"$(MANUAL_BUILDDIR)"
1123 $(call quiet-command
, sed
"s|@@VERSION@@|${VERSION}|g" $< >$@
, \
1126 docs
/interop
/qemu-qmp-qapi.texi
: qapi
/qapi-doc.texi
1129 docs
/interop
/qemu-ga-qapi.texi
: qga
/qapi-generated
/qga-qapi-doc.texi
1132 html
: docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html sphinxdocs
1133 info: docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-ga-ref.
info
1134 pdf
: docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
1135 txt
: docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
1137 docs
/interop
/qemu-ga-ref.
dvi docs
/interop
/qemu-ga-ref.html \
1138 docs
/interop
/qemu-ga-ref.
info docs
/interop
/qemu-ga-ref.pdf \
1139 docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7: \
1140 docs
/interop
/qemu-ga-ref.texi docs
/interop
/qemu-ga-qapi.texi
1142 docs
/interop
/qemu-qmp-ref.
dvi docs
/interop
/qemu-qmp-ref.html \
1143 docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-qmp-ref.pdf \
1144 docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7: \
1145 docs
/interop
/qemu-qmp-ref.texi docs
/interop
/qemu-qmp-qapi.texi
1147 $(filter %.1 %.7 %.8,$(DOCS
)): scripts
/texi2pod.pl
1151 %/coverage-report.html
:
1153 $(call quiet-command
,\
1154 gcovr
-r
$(SRC_PATH
) \
1155 $(foreach t
, $(TARGET_DIRS
), --object-directory
$(BUILD_DIR
)/$(t
)) \
1156 --object-directory
$(BUILD_DIR
) \
1157 -p
--html
--html-details
-o
$@
, \
1158 "GEN", "coverage-report.html")
1160 .PHONY
: coverage-report
1161 coverage-report
: $(CURDIR
)/reports
/coverage
/coverage-report.html
1165 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
1167 nsisflags
= -V2
-NOCD
1169 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
1170 ifeq ($(ARCH
),x86_64
)
1171 # 64 bit executables
1172 DLL_PATH
= $(SRC_PATH
)/dll
/w64
1175 # 32 bit executables
1176 DLL_PATH
= $(SRC_PATH
)/dll
/w32
1181 installer
: $(INSTALLER
)
1183 INSTDIR
=/tmp
/qemu-nsis
1185 $(INSTALLER
): install-doc
$(SRC_PATH
)/qemu.nsi
1186 $(MAKE
) install prefix=${INSTDIR}
1189 for i in
*.exe
; do \
1190 $(SIGNCODE
) $${i}; \
1195 for i in qemu-system-
*.exe
; do \
1197 arch
=$${arch
#qemu-system-}; \
1198 echo Section
\"$$arch\" Section_
$$arch; \
1199 echo SetOutPath
\"\
$$INSTDIR\"; \
1200 echo File
\"\
$${BINDIR}\\$$i\"; \
1203 ) >${INSTDIR}/system-emulations.nsh
1204 makensis
$(nsisflags
) \
1205 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
1206 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
1207 -DBINDIR
="${INSTDIR}" \
1208 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
1209 -DSRCDIR
="$(SRC_PATH)" \
1210 -DOUTFILE
="$(INSTALLER)" \
1211 -DDISPLAYVERSION
="$(VERSION)" \
1212 $(SRC_PATH
)/qemu.nsi
1215 $(SIGNCODE
) $(INSTALLER
)
1219 # Add a dependency on the generated files, so that they are always
1220 # rebuilt before other object files
1221 ifneq ($(wildcard config-host.mak
),)
1222 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
1223 Makefile
: $(generated-files-y
)
1227 .SECONDARY
: $(TRACE_HEADERS
) $(TRACE_HEADERS
:%=%-timestamp
) \
1228 $(TRACE_SOURCES
) $(TRACE_SOURCES
:%=%-timestamp
) \
1229 $(TRACE_DTRACE
) $(TRACE_DTRACE
:%=%-timestamp
)
1231 # Include automatically generated dependency files
1232 # Dependencies in Makefile.objs files come from our recursive subdir rules
1233 -include $(wildcard *.d tests
/*.d
)
1235 include $(SRC_PATH
)/tests
/docker
/Makefile.
include
1236 include $(SRC_PATH
)/tests
/vm
/Makefile.
include
1238 print-help-run
= printf
" %-30s - %s\\n" "$1" "$2"
1239 print-help
= $(quiet-@
)$(call print-help-run
,$1,$2)
1243 @echo
'Generic targets:'
1244 $(call print-help
,all,Build
all)
1245 ifdef CONFIG_MODULES
1246 $(call print-help
,modules
,Build
all modules
)
1248 $(call print-help
,dir/file.o
,Build specified target only
)
1249 $(call print-help
,install,Install QEMU
, documentation and tools
)
1250 $(call print-help
,ctags
/TAGS
,Generate
tags file for editors
)
1251 $(call print-help
,cscope
,Generate cscope index
)
1253 @
$(if
$(TARGET_DIRS
), \
1254 echo
'Architecture specific targets:'; \
1255 $(foreach t
, $(TARGET_DIRS
), \
1256 $(call print-help-run
,$(t
)/all,Build for
$(t
));) \
1259 echo
'Tools targets:'; \
1260 $(foreach t
, $(TOOLS
), \
1261 $(call print-help-run
,$(t
),Build
$(shell basename $(t
)) tool
);) \
1263 @echo
'Cleaning targets:'
1264 $(call print-help
,clean,Remove most generated files but keep the config
)
1266 $(call print-help
,clean-coverage
,Remove coverage files
)
1268 $(call print-help
,distclean,Remove
all generated files
)
1269 $(call print-help
,dist,Build a distributable tarball
)
1271 @echo
'Test targets:'
1272 $(call print-help
,check,Run
all tests
(check-help for details
))
1273 $(call print-help
,docker
,Help about targets running tests inside containers
)
1274 $(call print-help
,vm-help
,Help about targets running tests inside VM
)
1276 @echo
'Documentation targets:'
1277 $(call print-help
,html
info pdf txt
,Build documentation in specified format
)
1279 $(call print-help
,coverage-report
,Create code coverage report
)
1283 @echo
'Windows targets:'
1284 $(call print-help
,installer
,Build NSIS-based installer for QEMU
)
1285 ifdef QEMU_GA_MSI_ENABLED
1286 $(call print-help
,msi
,Build MSI-based installer for qemu-ga
)
1290 $(call print-help
,$(MAKE
) [targets
],(quiet build
, default
))
1291 $(call print-help
,$(MAKE
) V
=1 [targets
],(verbose build
))