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-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
76 @
# TODO: The next lines include code which supports a smooth
77 @
# transition from old configurations without config.status.
78 @
# This code can be removed after QEMU 1.7.
79 @if
test -x config.status
; then \
82 sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
; \
86 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
87 @echo
"Please call configure before running make!"
92 include $(SRC_PATH
)/rules.mak
94 # notempy and lor are defined in rules.mak
95 CONFIG_TOOLS
:= $(call notempty
,$(TOOLS
))
96 CONFIG_BLOCK
:= $(call lor
,$(CONFIG_SOFTMMU
),$(CONFIG_TOOLS
))
98 # Create QEMU_PKGVERSION and FULL_VERSION strings
99 # If PKGVERSION is set, use that; otherwise get version and -dirty status from git
100 QEMU_PKGVERSION
:= $(if
$(PKGVERSION
),$(PKGVERSION
),$(shell \
102 if
test -e .git
; then \
103 git describe
--match
'v*' 2>/dev
/null | tr
-d
'\n'; \
104 if
! git diff-index
--quiet HEAD
&>/dev
/null
; then \
109 # Either "version (pkgversion)", or just "version" if pkgversion not set
110 FULL_VERSION
:= $(if
$(QEMU_PKGVERSION
),$(VERSION
) ($(QEMU_PKGVERSION
)),$(VERSION
))
112 generated-files-y
= qemu-version.h config-host.h qemu-options.def
114 GENERATED_QAPI_FILES
= qapi
/qapi-builtin-types.h qapi
/qapi-builtin-types.c
115 GENERATED_QAPI_FILES
+= qapi
/qapi-types.h qapi
/qapi-types.c
116 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.h
)
117 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-types-
%.c
)
118 GENERATED_QAPI_FILES
+= qapi
/qapi-builtin-visit.h qapi
/qapi-builtin-visit.c
119 GENERATED_QAPI_FILES
+= qapi
/qapi-visit.h qapi
/qapi-visit.c
120 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.h
)
121 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-visit-
%.c
)
122 GENERATED_QAPI_FILES
+= qapi
/qapi-commands.h qapi
/qapi-commands.c
123 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.h
)
124 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-commands-
%.c
)
125 GENERATED_QAPI_FILES
+= qapi
/qapi-emit-events.h qapi
/qapi-emit-events.c
126 GENERATED_QAPI_FILES
+= qapi
/qapi-events.h qapi
/qapi-events.c
127 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.h
)
128 GENERATED_QAPI_FILES
+= $(QAPI_MODULES
:%=qapi
/qapi-events-
%.c
)
129 GENERATED_QAPI_FILES
+= qapi
/qapi-introspect.c qapi
/qapi-introspect.h
130 GENERATED_QAPI_FILES
+= qapi
/qapi-doc.texi
132 generated-files-y
+= $(GENERATED_QAPI_FILES
)
134 generated-files-y
+= trace
/generated-tcg-tracers.h
136 generated-files-y
+= trace
/generated-helpers-wrappers.h
137 generated-files-y
+= trace
/generated-helpers.h
138 generated-files-y
+= trace
/generated-helpers.c
140 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.h
141 generated-files-
$(CONFIG_TRACE_UST
) += trace-ust-all.c
143 generated-files-y
+= module_block.h
145 TRACE_HEADERS
= trace-root.h
$(trace-events-subdirs
:%=%/trace.h
)
146 TRACE_SOURCES
= trace-root.c
$(trace-events-subdirs
:%=%/trace.c
)
148 ifdef CONFIG_TRACE_DTRACE
149 TRACE_HEADERS
+= trace-dtrace-root.h
$(trace-events-subdirs
:%=%/trace-dtrace.h
)
150 TRACE_DTRACE
+= trace-dtrace-root.dtrace
$(trace-events-subdirs
:%=%/trace-dtrace.dtrace
)
152 ifdef CONFIG_TRACE_UST
153 TRACE_HEADERS
+= trace-ust-root.h
$(trace-events-subdirs
:%=%/trace-ust.h
)
156 generated-files-y
+= $(TRACE_HEADERS
)
157 generated-files-y
+= $(TRACE_SOURCES
)
158 generated-files-y
+= $(BUILD_DIR
)/trace-events-all
159 generated-files-y
+= .git-submodule-status
161 trace-group-name
= $(shell dirname
$1 | sed
-e
's/[^a-zA-Z0-9]/_/g')
163 tracetool-y
= $(SRC_PATH
)/scripts
/tracetool.py
164 tracetool-y
+= $(shell find
$(SRC_PATH
)/scripts
/tracetool
-name
"*.py")
166 %/trace.h
: %/trace.h-timestamp
167 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
168 %/trace.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
169 $(call quiet-command
,$(TRACETOOL
) \
170 --group
=$(call trace-group-name
,$@
) \
172 --backends
=$(TRACE_BACKENDS
) \
173 $< > $@
,"GEN","$(@:%-timestamp=%)")
175 %/trace.c
: %/trace.c-timestamp
176 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
177 %/trace.c-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
178 $(call quiet-command
,$(TRACETOOL
) \
179 --group
=$(call trace-group-name
,$@
) \
181 --backends
=$(TRACE_BACKENDS
) \
182 $< > $@
,"GEN","$(@:%-timestamp=%)")
184 %/trace-ust.h
: %/trace-ust.h-timestamp
185 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
186 %/trace-ust.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
187 $(call quiet-command
,$(TRACETOOL
) \
188 --group
=$(call trace-group-name
,$@
) \
189 --format
=ust-events-h \
190 --backends
=$(TRACE_BACKENDS
) \
191 $< > $@
,"GEN","$(@:%-timestamp=%)")
193 %/trace-dtrace.dtrace
: %/trace-dtrace.dtrace-timestamp
194 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
195 %/trace-dtrace.dtrace-timestamp
: $(SRC_PATH
)/%/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
196 $(call quiet-command
,$(TRACETOOL
) \
197 --group
=$(call trace-group-name
,$@
) \
199 --backends
=$(TRACE_BACKENDS
) \
200 $< > $@
,"GEN","$(@:%-timestamp=%)")
202 %/trace-dtrace.h
: %/trace-dtrace.dtrace
$(tracetool-y
)
203 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
205 %/trace-dtrace.o
: %/trace-dtrace.dtrace
$(tracetool-y
)
208 trace-root.h
: trace-root.h-timestamp
209 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
210 trace-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
211 $(call quiet-command
,$(TRACETOOL
) \
214 --backends
=$(TRACE_BACKENDS
) \
215 $< > $@
,"GEN","$(@:%-timestamp=%)")
217 trace-root.c
: trace-root.c-timestamp
218 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
219 trace-root.c-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
220 $(call quiet-command
,$(TRACETOOL
) \
223 --backends
=$(TRACE_BACKENDS
) \
224 $< > $@
,"GEN","$(@:%-timestamp=%)")
226 trace-ust-root.h
: trace-ust-root.h-timestamp
227 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
228 trace-ust-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
229 $(call quiet-command
,$(TRACETOOL
) \
231 --format
=ust-events-h \
232 --backends
=$(TRACE_BACKENDS
) \
233 $< > $@
,"GEN","$(@:%-timestamp=%)")
235 trace-ust-all.h
: trace-ust-all.h-timestamp
236 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
237 trace-ust-all.h-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
238 $(call quiet-command
,$(TRACETOOL
) \
240 --format
=ust-events-h \
241 --backends
=$(TRACE_BACKENDS
) \
242 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
244 trace-ust-all.c
: trace-ust-all.c-timestamp
245 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
246 trace-ust-all.c-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
247 $(call quiet-command
,$(TRACETOOL
) \
249 --format
=ust-events-c \
250 --backends
=$(TRACE_BACKENDS
) \
251 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
253 trace-dtrace-root.dtrace
: trace-dtrace-root.dtrace-timestamp
254 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
255 trace-dtrace-root.dtrace-timestamp
: $(SRC_PATH
)/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
256 $(call quiet-command
,$(TRACETOOL
) \
259 --backends
=$(TRACE_BACKENDS
) \
260 $< > $@
,"GEN","$(@:%-timestamp=%)")
262 trace-dtrace-root.h
: trace-dtrace-root.dtrace
263 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
265 trace-dtrace-root.o
: trace-dtrace-root.dtrace
267 KEYCODEMAP_GEN
= $(SRC_PATH
)/ui
/keycodemapdb
/tools
/keymap-gen
268 KEYCODEMAP_CSV
= $(SRC_PATH
)/ui
/keycodemapdb
/data
/keymaps.csv
271 ui
/input-keymap-atset1-to-qcode.c \
272 ui
/input-keymap-linux-to-qcode.c \
273 ui
/input-keymap-qcode-to-atset1.c \
274 ui
/input-keymap-qcode-to-atset2.c \
275 ui
/input-keymap-qcode-to-atset3.c \
276 ui
/input-keymap-qcode-to-linux.c \
277 ui
/input-keymap-qcode-to-qnum.c \
278 ui
/input-keymap-qcode-to-sun.c \
279 ui
/input-keymap-qnum-to-qcode.c \
280 ui
/input-keymap-usb-to-qcode.c \
281 ui
/input-keymap-win32-to-qcode.c \
282 ui
/input-keymap-x11-to-qcode.c \
283 ui
/input-keymap-xorgevdev-to-qcode.c \
284 ui
/input-keymap-xorgkbd-to-qcode.c \
285 ui
/input-keymap-xorgxquartz-to-qcode.c \
286 ui
/input-keymap-xorgxwin-to-qcode.c \
287 ui
/input-keymap-osx-to-qcode.c \
290 generated-files-
$(CONFIG_SOFTMMU
) += $(KEYCODEMAP_FILES
)
292 ui
/input-keymap-
%.c
: $(KEYCODEMAP_GEN
) $(KEYCODEMAP_CSV
) $(SRC_PATH
)/ui
/Makefile.objs
293 $(call quiet-command
,\
294 stem
=$* && src
=$${stem
%-to-
*} dst
=$${stem
#*-to-} && \
295 test -e
$(KEYCODEMAP_GEN
) && \
296 $(PYTHON
) $(KEYCODEMAP_GEN
) \
298 --varname qemu_input_map_
$${src}_to_
$${dst} \
299 code-map
$(KEYCODEMAP_CSV
) $${src} $${dst} \
300 > $@ ||
rm -f
$@
, "GEN", "$@")
302 $(KEYCODEMAP_GEN
): .git-submodule-status
303 $(KEYCODEMAP_CSV
): .git-submodule-status
305 edk2-decompressed
= $(basename $(wildcard pc-bios
/edk2-
*.fd.bz2
))
306 pc-bios
/edk2-
%.fd
: pc-bios
/edk2-
%.fd.bz2
307 $(call quiet-command
,bzip2
-d
-c
$< > $@
,"BUNZIP2",$<)
309 # Don't try to regenerate Makefile or configure
310 # We don't generate any of them
314 .PHONY
: all clean cscope
distclean html
info install install-doc \
315 pdf txt recurse-all
dist msi FORCE
317 $(call set-vpath
, $(SRC_PATH
))
319 LIBS
+=-lz
$(LIBS_TOOLS
)
324 HELPERS-
$(call land
,$(CONFIG_SOFTMMU
),$(CONFIG_LINUX
)) = qemu-bridge-helper
$(EXESUF
)
329 HELPERS-y
+= vhost-user-gpu
$(EXESUF
)
330 vhost-user-json-y
+= contrib
/vhost-user-gpu
/50-qemu-gpu.json
336 DOCS
=qemu-doc.html qemu-doc.txt qemu
.1 qemu-img
.1 qemu-nbd
.8 qemu-ga
.8
337 DOCS
+=docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7
338 DOCS
+=docs
/interop
/qemu-ga-ref.html docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7
339 DOCS
+=docs
/qemu-block-drivers
.7
340 DOCS
+=docs
/qemu-cpu-models
.7
342 DOCS
+=fsdev
/virtfs-proxy-helper
.1
344 ifdef CONFIG_TRACE_SYSTEMTAP
345 DOCS
+=scripts
/qemu-trace-stap
.1
351 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
--quiet
) BUILD_DIR
=$(BUILD_DIR
)
352 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(filter %-softmmu
, $(TARGET_DIRS
)))
353 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %.d
, $(SUBDIR_DEVICES_MAK
))
355 ifeq ($(SUBDIR_DEVICES_MAK
),)
356 config-all-devices.mak
: config-host.mak
357 $(call quiet-command
,echo
'# no devices' > $@
,"GEN","$@")
359 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
) config-host.mak
360 $(call quiet-command
, sed
-n \
361 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
362 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
366 -include $(SUBDIR_DEVICES_MAK_DEP
)
368 # This has to be kept in sync with Kconfig.host.
370 $(CONFIG_MINIKCONF_MODE
) \
371 $@
$*/config-devices.mak.d
$< $(MINIKCONF_INPUTS
) \
372 CONFIG_KVM
=$(CONFIG_KVM
) \
373 CONFIG_SPICE
=$(CONFIG_SPICE
) \
374 CONFIG_IVSHMEM
=$(CONFIG_IVSHMEM
) \
375 CONFIG_TPM
=$(CONFIG_TPM
) \
376 CONFIG_XEN
=$(CONFIG_XEN
) \
377 CONFIG_OPENGL
=$(CONFIG_OPENGL
) \
378 CONFIG_X11
=$(CONFIG_X11
) \
379 CONFIG_VHOST_USER
=$(CONFIG_VHOST_USER
) \
380 CONFIG_VIRTFS
=$(CONFIG_VIRTFS
) \
381 CONFIG_LINUX
=$(CONFIG_LINUX
) \
382 CONFIG_PVRDMA
=$(CONFIG_PVRDMA
)
384 MINIKCONF_INPUTS
= $(SRC_PATH
)/Kconfig.host
$(SRC_PATH
)/hw
/Kconfig
385 MINIKCONF
= $(PYTHON
) $(SRC_PATH
)/scripts
/minikconf.py \
387 $(SUBDIR_DEVICES_MAK
): %/config-devices.mak
: default-configs
/%.mak
$(MINIKCONF_INPUTS
) $(BUILD_DIR
)/config-host.mak
388 $(call quiet-command
, $(MINIKCONF
) $(MINIKCONF_ARGS
) > $@.tmp
, "GEN", "$@.tmp")
389 $(call quiet-command
, if
test -f
$@
; then \
390 if cmp
-s
$@.old
$@
; then \
394 if
test -f
$@.old
; then \
395 echo
"WARNING: $@ (user modified) out of date.";\
397 echo
"WARNING: $@ out of date.";\
399 echo
"Run \"$(MAKE) defconfig\" to regenerate."; \
408 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
410 ifneq ($(wildcard config-host.mak
),)
411 include $(SRC_PATH
)/Makefile.objs
414 dummy
:= $(call unnest-vars
,, \
421 ivshmem-client-obj-y \
422 ivshmem-server-obj-y \
424 libvhost-user-obj-y \
425 vhost-user-scsi-obj-y \
426 vhost-user-blk-obj-y \
427 vhost-user-input-obj-y \
428 vhost-user-gpu-obj-y \
444 include $(SRC_PATH
)/tests
/Makefile.
include
446 all: $(DOCS
) $(if
$(BUILD_DOCS
),sphinxdocs
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
$(vhost-user-json-y
)
448 qemu-version.h
: FORCE
449 $(call quiet-command
, \
450 (printf
'#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
451 printf
'#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
453 $(call quiet-command
, if
! cmp
-s
$@
$@.tmp
; then \
459 config-host.h
: config-host.h-timestamp
460 config-host.h-timestamp
: config-host.mak
461 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
462 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
464 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
465 SOFTMMU_SUBDIR_RULES
=$(filter %-softmmu
,$(SUBDIR_RULES
))
467 $(SOFTMMU_SUBDIR_RULES
): $(authz-obj-y
)
468 $(SOFTMMU_SUBDIR_RULES
): $(block-obj-y
)
469 $(SOFTMMU_SUBDIR_RULES
): $(chardev-obj-y
)
470 $(SOFTMMU_SUBDIR_RULES
): $(crypto-obj-y
)
471 $(SOFTMMU_SUBDIR_RULES
): $(io-obj-y
)
472 $(SOFTMMU_SUBDIR_RULES
): config-all-devices.mak
473 $(SOFTMMU_SUBDIR_RULES
): $(edk2-decompressed
)
476 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
478 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
479 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
480 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
482 subdir-dtc
: .git-submodule-status dtc
/libfdt dtc
/tests
483 $(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
,)
485 dtc
/%: .git-submodule-status
488 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
489 # Not overriding CFLAGS leads to mis-matches between compilation modes.
490 # Therefore we replicate some of the logic in the sub-makefile.
491 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
492 # no need to annoy QEMU developers with such things.
493 CAP_CFLAGS
= $(patsubst -W
%,,$(CFLAGS
) $(QEMU_CFLAGS
))
494 CAP_CFLAGS
+= -DCAPSTONE_USE_SYS_DYN_MEM
495 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM
496 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM64
497 CAP_CFLAGS
+= -DCAPSTONE_HAS_POWERPC
498 CAP_CFLAGS
+= -DCAPSTONE_HAS_X86
500 subdir-capstone
: .git-submodule-status
501 $(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
))
503 subdir-slirp
: .git-submodule-status
504 $(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)")
506 $(SUBDIR_RULES
): libqemuutil.a
$(common-obj-y
) \
507 $(qom-obj-y
) $(crypto-user-obj-
$(CONFIG_USER_ONLY
))
509 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
510 # Only keep -O and -g cflags
512 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/" CFLAGS
="$(filter -O% -g%,$(CFLAGS))",)
514 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
516 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
518 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc config-host.h
519 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<,"RC","version.o")
521 Makefile
: $(version-obj-y
)
523 ######################################################################
526 libqemuutil.a
: $(util-obj-y
) $(trace-obj-y
) $(stub-obj-y
)
527 libvhost-user.a
: $(libvhost-user-obj-y
) $(util-obj-y
) $(stub-obj-y
)
529 ######################################################################
531 COMMON_LDADDS
= libqemuutil.a
533 qemu-img.o
: qemu-img-cmds.h
535 qemu-img
$(EXESUF
): qemu-img.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
536 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
537 qemu-io
$(EXESUF
): qemu-io.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
539 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
$(COMMON_LDADDS
)
541 qemu-keymap
$(EXESUF
): qemu-keymap.o ui
/input-keymap.o
$(COMMON_LDADDS
)
543 qemu-edid
$(EXESUF
): qemu-edid.o hw
/display
/edid-generate.o
$(COMMON_LDADDS
)
545 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/9p-marshal.o fsdev
/9p-iov-marshal.o
$(COMMON_LDADDS
)
546 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
548 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
)
550 scsi
/qemu-pr-helper
$(EXESUF
): LIBS
+= -ludev
-lmultipath
-lmpathpersist
553 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
554 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
556 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
557 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
559 qemu-keymap
$(EXESUF
): LIBS
+= $(XKBCOMMON_LIBS
)
560 qemu-keymap
$(EXESUF
): QEMU_CFLAGS
+= $(XKBCOMMON_CFLAGS
)
562 qapi-py
= $(SRC_PATH
)/scripts
/qapi
/commands.py \
563 $(SRC_PATH
)/scripts
/qapi
/events.py \
564 $(SRC_PATH
)/scripts
/qapi
/introspect.py \
565 $(SRC_PATH
)/scripts
/qapi
/types.py \
566 $(SRC_PATH
)/scripts
/qapi
/visit.py \
567 $(SRC_PATH
)/scripts
/qapi
/common.py \
568 $(SRC_PATH
)/scripts
/qapi
/doc.py \
569 $(SRC_PATH
)/scripts
/qapi-gen.py
571 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h \
572 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h \
573 qga
/qapi-generated
/qga-qapi-commands.h qga
/qapi-generated
/qga-qapi-commands.c \
574 qga
/qapi-generated
/qga-qapi-doc.texi
: \
575 qga
/qapi-generated
/qapi-gen-timestamp
;
576 qga
/qapi-generated
/qapi-gen-timestamp
: $(SRC_PATH
)/qga
/qapi-schema.json
$(qapi-py
)
577 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
578 -o qga
/qapi-generated
-p
"qga-" $<, \
579 "GEN","$(@:%-timestamp=%)")
582 qapi-modules
= $(SRC_PATH
)/qapi
/qapi-schema.json \
583 $(QAPI_MODULES
:%=$(SRC_PATH
)/qapi
/%.json
)
585 $(GENERATED_QAPI_FILES
): qapi-gen-timestamp
;
586 qapi-gen-timestamp
: $(qapi-modules
) $(qapi-py
)
587 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
589 "GEN","$(@:%-timestamp=%)")
592 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h
)
593 $(qga-obj-y
): $(QGALIB_GEN
)
595 qemu-ga
$(EXESUF
): $(qga-obj-y
) $(COMMON_LDADDS
)
598 ifdef QEMU_GA_MSI_ENABLED
599 QEMU_GA_MSI
=qemu-ga-
$(ARCH
).msi
603 $(QEMU_GA_MSI
): qemu-ga.exe
$(QGA_VSS_PROVIDER
)
605 $(QEMU_GA_MSI
): config-host.mak
607 $(QEMU_GA_MSI
): $(SRC_PATH
)/qga
/installer
/qemu-ga.wxs
608 $(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)" \
609 wixl
-o
$@
$(QEMU_GA_MSI_ARCH
) $(QEMU_GA_MSI_WITH_VSS
) $(QEMU_GA_MSI_MINGW_DLL_PATH
) $<,"WIXL","$@")
612 @echo
"MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
617 qemu-ga
: qemu-ga
$(EXESUF
) $(QGA_VSS_PROVIDER
) $(QEMU_GA_MSI
)
620 elf2dmp
$(EXESUF
): LIBS
+= $(CURL_LIBS
)
621 elf2dmp
$(EXESUF
): $(elf2dmp-obj-y
)
625 ivshmem-client
$(EXESUF
): $(ivshmem-client-obj-y
) $(COMMON_LDADDS
)
627 ivshmem-server
$(EXESUF
): $(ivshmem-server-obj-y
) $(COMMON_LDADDS
)
630 vhost-user-scsi
$(EXESUF
): $(vhost-user-scsi-obj-y
) libvhost-user.a
632 vhost-user-blk
$(EXESUF
): $(vhost-user-blk-obj-y
) libvhost-user.a
635 rdmacm-mux
$(EXESUF
): LIBS
+= "-libumad"
636 rdmacm-mux
$(EXESUF
): $(rdmacm-mux-obj-y
) $(COMMON_LDADDS
)
639 vhost-user-gpu
$(EXESUF
): $(vhost-user-gpu-obj-y
) $(libvhost-user-obj-y
) libqemuutil.a libqemustub.a
642 ifdef CONFIG_VHOST_USER_INPUT
644 vhost-user-input
$(EXESUF
): $(vhost-user-input-obj-y
) libvhost-user.a libqemuutil.a
647 # build by default, do not install
648 all: vhost-user-input
$(EXESUF
)
652 module_block.h
: $(SRC_PATH
)/scripts
/modules
/module_block.py config-host.mak
653 $(call quiet-command
,$(PYTHON
) $< $@ \
654 $(addprefix $(SRC_PATH
)/,$(patsubst %.mo
,%.c
,$(block-obj-m
))), \
658 .PHONY
: clean-coverage
660 $(call quiet-command
, \
661 find . \
( -name
'*.gcda' -o
-name
'*.gcov' \
) -type f
-exec
rm {} +, \
662 "CLEAN", "coverage files")
666 # avoid old build problems by removing potentially incorrect old files
667 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
668 rm -f qemu-options.def
670 find . \
( -name
'*.so' -o
-name
'*.dll' -o
-name
'*.mo' -o
-name
'*.[oda]' \
) -type f \
671 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-aarch64.a \
672 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-arm.a \
673 ! -path .
/roms
/edk2
/BaseTools
/Source
/Python
/UPT
/Dll
/sqlite3.dll \
675 rm -f
$(edk2-decompressed
)
676 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) qemu-ga
$(EXESUF
) TAGS cscope.
* *.pod
*~
*/*~
677 rm -f fsdev
/*.pod scsi
/*.pod
678 rm -f qemu-img-cmds.h
679 rm -f ui
/shader
/*-vert.h ui
/shader
/*-frag.h
680 @
# May not be present in generated-files-y
681 rm -f trace
/generated-tracers-dtrace.dtrace
*
682 rm -f trace
/generated-tracers-dtrace.h
*
683 rm -f
$(foreach f
,$(generated-files-y
),$(f
) $(f
)-timestamp
)
684 rm -f qapi-gen-timestamp
685 rm -rf qga
/qapi-generated
686 for d in
$(ALL_SUBDIRS
); do \
687 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
688 rm -f
$$d/qemu-options.def
; \
690 rm -f config-all-devices.mak
692 VERSION ?
= $(shell cat VERSION
)
694 dist: qemu-
$(VERSION
).
tar.bz2
697 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
699 # Sphinx does not allow building manuals into the same directory as
700 # the source files, so if we're doing an in-tree QEMU build we must
701 # build the manuals into a subdirectory (and then install them from
702 # there for 'make install'). For an out-of-tree build we can just
703 # use the docs/ subdirectory in the build tree as normal.
704 ifeq ($(realpath
$(SRC_PATH
)),$(realpath .
))
705 MANUAL_BUILDDIR
:= docs
/built
707 MANUAL_BUILDDIR
:= docs
710 define clean-manual
=
711 rm -rf
$(MANUAL_BUILDDIR
)/$1/_static
712 rm -f
$(MANUAL_BUILDDIR
)/$1/objects.inv
$(MANUAL_BUILDDIR
)/$1/searchindex.js
$(MANUAL_BUILDDIR
)/$1/*.html
716 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
717 rm -f config-all-devices.mak config-all-disas.mak config.status
718 rm -f
$(SUBDIR_DEVICES_MAK
)
719 rm -f po
/*.mo tests
/qemu-iotests
/common.env
720 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
721 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps
722 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
723 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
724 rm -f qemu-doc.vr qemu-doc.txt
726 rm -f linux-headers
/asm
727 rm -f docs
/version.texi
728 rm -f docs
/interop
/qemu-ga-qapi.texi docs
/interop
/qemu-qmp-qapi.texi
729 rm -f docs
/interop
/qemu-qmp-ref
.7 docs
/interop
/qemu-ga-ref
.7
730 rm -f docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
731 rm -f docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
732 rm -f docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html
733 rm -f docs
/qemu-block-drivers
.7
734 rm -f docs
/qemu-cpu-models
.7
736 $(call clean-manual
,devel
)
737 $(call clean-manual
,interop
)
738 $(call clean-manual
,specs
)
739 for d in
$(TARGET_DIRS
); do \
740 rm -rf
$$d || exit
1 ; \
743 if
test -f dtc
/version_gen.h
; then
$(MAKE
) $(DTC_MAKE_ARGS
) clean; fi
745 KEYMAPS
=da en-gb et fr fr-ch is lt no pt-br sv \
746 ar de en-us fi fr-be hr it lv nl pl ru th \
747 de-ch es fo fr-ca hu ja mk pt sl tr \
751 BLOBS
=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
752 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
753 vgabios-ramfb.bin vgabios-bochs-display.bin \
754 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
755 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
756 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
757 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
758 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
759 efi-e1000e.rom efi-vmxnet3.rom \
760 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
761 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
762 s390-ccw.img s390-netboot.img \
763 spapr-rtas.bin slof.bin skiboot.lid \
765 u-boot.e500 u-boot-sam460-20100605.bin \
770 DESCS
=50-edk2-i386-secure.json
50-edk2-x86_64-secure.json \
771 60-edk2-aarch64.json
60-edk2-arm.json
60-edk2-i386.json
60-edk2-x86_64.json
777 # Note that we manually filter-out the non-Sphinx documentation which
778 # is currently built into the docs/interop directory in the build tree.
779 define install-manual
=
780 for d in
$$(cd
$(MANUAL_BUILDDIR
) && find
$1 -type d
); do
$(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)/$$d"; done
781 for f in
$$(cd
$(MANUAL_BUILDDIR
) && find
$1 -type f
-a
'!' '(' -name
'qemu-*-qapi.*' -o
-name
'qemu-*-ref.*' ')' ); do
$(INSTALL_DATA
) "$(MANUAL_BUILDDIR)/$$f" "$(DESTDIR)$(qemu_docdir)/$$f"; done
784 # Note that we deliberately do not install the "devel" manual: it is
785 # for QEMU developers, and not interesting to our users.
786 .PHONY
: install-sphinxdocs
787 install-sphinxdocs
: sphinxdocs
788 $(call install-manual
,interop
)
789 $(call install-manual
,specs
)
791 install-doc
: $(DOCS
) install-sphinxdocs
792 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
793 $(INSTALL_DATA
) qemu-doc.html
"$(DESTDIR)$(qemu_docdir)"
794 $(INSTALL_DATA
) qemu-doc.txt
"$(DESTDIR)$(qemu_docdir)"
795 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.html
"$(DESTDIR)$(qemu_docdir)"
796 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.txt
"$(DESTDIR)$(qemu_docdir)"
798 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
799 $(INSTALL_DATA
) qemu
.1 "$(DESTDIR)$(mandir)/man1"
800 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man7"
801 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref
.7 "$(DESTDIR)$(mandir)/man7"
802 $(INSTALL_DATA
) docs
/qemu-block-drivers
.7 "$(DESTDIR)$(mandir)/man7"
803 $(INSTALL_DATA
) docs
/qemu-cpu-models
.7 "$(DESTDIR)$(mandir)/man7"
805 $(INSTALL_DATA
) qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
806 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
807 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
809 ifdef CONFIG_TRACE_SYSTEMTAP
810 $(INSTALL_DATA
) scripts
/qemu-trace-stap
.1 "$(DESTDIR)$(mandir)/man1"
812 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
813 $(INSTALL_DATA
) qemu-ga
.8 "$(DESTDIR)$(mandir)/man8"
814 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.html
"$(DESTDIR)$(qemu_docdir)"
815 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.txt
"$(DESTDIR)$(qemu_docdir)"
816 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref
.7 "$(DESTDIR)$(mandir)/man7"
820 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
821 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
825 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
827 install-localstatedir
:
829 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
830 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
834 ICON_SIZES
=16x16
24x24
32x32
48x48
64x64
128x128
256x256
512x512
836 install: all $(if
$(BUILD_DOCS
),install-doc
) install-datadir install-localstatedir \
837 $(if
$(INSTALL_BLOBS
),$(edk2-decompressed
))
839 $(call install-prog
,$(subst qemu-ga
,qemu-ga
$(EXESUF
),$(TOOLS
)),$(DESTDIR
)$(bindir))
841 ifneq ($(CONFIG_MODULES
),)
842 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
843 for s in
$(modules-m
:.mo
=$(DSOSUF
)); do \
844 t
="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
845 $(INSTALL_LIB
) $$s "$$t"; \
846 test -z
"$(STRIP)" ||
$(STRIP
) "$$t"; \
849 ifneq ($(HELPERS-y
),)
850 $(call install-prog
,$(HELPERS-y
),$(DESTDIR
)$(libexecdir
))
852 ifneq ($(vhost-user-json-y
),)
853 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/vhost-user/"
854 for x in
$(vhost-user-json-y
); do \
855 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)/vhost-user/"; \
858 ifdef CONFIG_TRACE_SYSTEMTAP
859 $(INSTALL_PROG
) "scripts/qemu-trace-stap" $(DESTDIR
)$(bindir)
862 set
-e
; for x in
$(BLOBS
); do \
863 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
867 set
-e
; for x in
$(edk2-decompressed
); do \
868 $(INSTALL_DATA
) $$x "$(DESTDIR)$(qemu_datadir)"; \
872 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/firmware"
873 set
-e
; tmpf
=$$(mktemp
); trap
'rm -f -- "$$tmpf"' EXIT
; \
874 for x in
$(DESCS
); do \
875 sed
-e
's,@DATADIR@,$(DESTDIR)$(qemu_datadir),' \
876 "$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
877 $(INSTALL_DATA
) "$$tmpf" \
878 "$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
881 for s in
$(ICON_SIZES
); do \
882 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/$${s}/apps"; \
883 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_
$${s}.png \
884 "$(DESTDIR)/$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
886 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/32x32/apps"; \
887 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_32x32.bmp \
888 "$(DESTDIR)/$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
889 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/scalable/apps"; \
890 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu.svg \
891 "$(DESTDIR)/$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
892 mkdir
-p
"$(DESTDIR)/$(qemu_desktopdir)"
893 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/qemu.desktop \
894 "$(DESTDIR)/$(qemu_desktopdir)/qemu.desktop"
898 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
899 set
-e
; for x in
$(KEYMAPS
); do \
900 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
902 $(INSTALL_DATA
) $(BUILD_DIR
)/trace-events-all
"$(DESTDIR)$(qemu_datadir)/trace-events-all"
903 for d in
$(TARGET_DIRS
); do \
904 $(MAKE
) $(SUBDIR_MAKEFLAGS
) TARGET_DIR
=$$d/ -C
$$d $@ || exit
1 ; \
910 find
"$(SRC_PATH)" -name
'*.[hc]' -exec ctags
--append
{} +
915 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
918 rm -f
"$(SRC_PATH)"/cscope.
*
919 find
"$(SRC_PATH)/" -name
"*.[chsS]" -print | sed
's,^\./,,' > "$(SRC_PATH)/cscope.files"
920 cscope
-b
-i
"$(SRC_PATH)/cscope.files"
922 # opengl shader programs
923 ui
/shader
/%-vert.h
: $(SRC_PATH
)/ui
/shader
/%.vert
$(SRC_PATH
)/scripts
/shaderinclude.pl
925 $(call quiet-command
,\
926 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
929 ui
/shader
/%-frag.h
: $(SRC_PATH
)/ui
/shader
/%.frag
$(SRC_PATH
)/scripts
/shaderinclude.pl
931 $(call quiet-command
,\
932 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
935 ui
/shader.o
: $(SRC_PATH
)/ui
/shader.c \
936 ui
/shader
/texture-blit-vert.h \
937 ui
/shader
/texture-blit-flip-vert.h \
938 ui
/shader
/texture-blit-frag.h
942 MAKEINFOINCLUDES
= -I docs
-I
$(<D
) -I
$(@D
)
943 MAKEINFOFLAGS
=--no-split
--number-sections
$(MAKEINFOINCLUDES
)
944 TEXI2PODFLAGS
=$(MAKEINFOINCLUDES
) -DVERSION
="$(VERSION)" -DCONFDIR
="$(qemu_confdir)"
945 TEXI2PDFFLAGS
=$(if
$(V
),,--quiet
) -I
$(SRC_PATH
) $(MAKEINFOINCLUDES
)
947 docs
/version.texi
: $(SRC_PATH
)/VERSION config-host.mak
948 $(call quiet-command
,(\
949 echo
"@set VERSION $(VERSION)" && \
950 echo
"@set CONFDIR $(qemu_confdir)" \
953 %.html
: %.texi docs
/version.texi
954 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
955 --html
$< -o
$@
,"GEN","$@")
957 %.
info: %.texi docs
/version.texi
958 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) $< -o
$@
,"GEN","$@")
960 %.txt
: %.texi docs
/version.texi
961 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
962 --plaintext
$< -o
$@
,"GEN","$@")
964 %.pdf
: %.texi docs
/version.texi
965 $(call quiet-command
,texi2pdf
$(TEXI2PDFFLAGS
) $< -o
$@
,"GEN","$@")
967 # Sphinx builds all its documentation at once in one invocation
968 # and handles "don't rebuild things unless necessary" itself.
969 # The '.doctrees' files are cached information to speed this up.
971 sphinxdocs
: $(MANUAL_BUILDDIR
)/devel
/index.html
$(MANUAL_BUILDDIR
)/interop
/index.html
$(MANUAL_BUILDDIR
)/specs
/index.html
973 # Canned command to build a single manual
974 build-manual
= $(call quiet-command
,sphinx-build
$(if
$(V
),,-q
) -W
-n
-b html
-D version
=$(VERSION
) -D release
="$(FULL_VERSION)" -d .doctrees
/$1 $(SRC_PATH
)/docs
/$1 $(MANUAL_BUILDDIR
)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
975 # We assume all RST files in the manual's directory are used in it
976 manual-deps
= $(wildcard $(SRC_PATH
)/docs
/$1/*.rst
) $(SRC_PATH
)/docs
/$1/conf.py
$(SRC_PATH
)/docs
/conf.py
978 $(MANUAL_BUILDDIR
)/devel
/index.html
: $(call manual-deps
,devel
)
979 $(call build-manual
,devel
)
981 $(MANUAL_BUILDDIR
)/interop
/index.html
: $(call manual-deps
,interop
)
982 $(call build-manual
,interop
)
984 $(MANUAL_BUILDDIR
)/specs
/index.html
: $(call manual-deps
,specs
)
985 $(call build-manual
,specs
)
987 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
988 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
990 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
$(SRC_PATH
)/scripts
/hxtool
991 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
993 qemu-monitor-info.texi
: $(SRC_PATH
)/hmp-commands-info.hx
$(SRC_PATH
)/scripts
/hxtool
994 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
996 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
997 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
999 docs
/interop
/qemu-qmp-qapi.texi
: qapi
/qapi-doc.texi
1002 docs
/interop
/qemu-ga-qapi.texi
: qga
/qapi-generated
/qga-qapi-doc.texi
1005 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
1006 qemu
.1: qemu-option-trace.texi
1007 qemu-img
.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1008 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
1009 qemu-nbd
.8: qemu-nbd.texi qemu-option-trace.texi
1010 qemu-ga
.8: qemu-ga.texi
1011 docs
/qemu-block-drivers
.7: docs
/qemu-block-drivers.texi
1012 docs
/qemu-cpu-models
.7: docs
/qemu-cpu-models.texi
1013 scripts
/qemu-trace-stap
.1: scripts
/qemu-trace-stap.texi
1015 html
: qemu-doc.html docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html sphinxdocs
1016 info: qemu-doc.
info docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-ga-ref.
info
1017 pdf
: qemu-doc.pdf docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
1018 txt
: qemu-doc.txt docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
1020 qemu-doc.html qemu-doc.
info qemu-doc.pdf qemu-doc.txt
: \
1021 qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
1022 qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
1023 qemu-monitor-info.texi docs
/qemu-block-drivers.texi \
1024 docs
/qemu-cpu-models.texi docs
/security.texi
1026 docs
/interop
/qemu-ga-ref.
dvi docs
/interop
/qemu-ga-ref.html \
1027 docs
/interop
/qemu-ga-ref.
info docs
/interop
/qemu-ga-ref.pdf \
1028 docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7: \
1029 docs
/interop
/qemu-ga-ref.texi docs
/interop
/qemu-ga-qapi.texi
1031 docs
/interop
/qemu-qmp-ref.
dvi docs
/interop
/qemu-qmp-ref.html \
1032 docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-qmp-ref.pdf \
1033 docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7: \
1034 docs
/interop
/qemu-qmp-ref.texi docs
/interop
/qemu-qmp-qapi.texi
1036 $(filter %.1 %.7 %.8,$(DOCS
)): scripts
/texi2pod.pl
1040 %/coverage-report.html
:
1042 $(call quiet-command
,\
1043 gcovr
-r
$(SRC_PATH
) \
1044 $(foreach t
, $(TARGET_DIRS
), --object-directory
$(BUILD_DIR
)/$(t
)) \
1045 --object-directory
$(BUILD_DIR
) \
1046 -p
--html
--html-details
-o
$@
, \
1047 "GEN", "coverage-report.html")
1049 .PHONY
: coverage-report
1050 coverage-report
: $(CURDIR
)/reports
/coverage
/coverage-report.html
1054 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
1056 nsisflags
= -V2
-NOCD
1058 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
1059 ifeq ($(ARCH
),x86_64
)
1060 # 64 bit executables
1061 DLL_PATH
= $(SRC_PATH
)/dll
/w64
1064 # 32 bit executables
1065 DLL_PATH
= $(SRC_PATH
)/dll
/w32
1070 installer
: $(INSTALLER
)
1072 INSTDIR
=/tmp
/qemu-nsis
1074 $(INSTALLER
): $(SRC_PATH
)/qemu.nsi
1075 $(MAKE
) install prefix=${INSTDIR}
1078 for i in
*.exe
; do \
1079 $(SIGNCODE
) $${i}; \
1084 for i in qemu-system-
*.exe
; do \
1086 arch
=$${arch
#qemu-system-}; \
1087 echo Section
\"$$arch\" Section_
$$arch; \
1088 echo SetOutPath
\"\
$$INSTDIR\"; \
1089 echo File
\"\
$${BINDIR}\\$$i\"; \
1092 ) >${INSTDIR}/system-emulations.nsh
1093 makensis
$(nsisflags
) \
1094 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
1095 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
1096 -DBINDIR
="${INSTDIR}" \
1097 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
1098 -DSRCDIR
="$(SRC_PATH)" \
1099 -DOUTFILE
="$(INSTALLER)" \
1100 -DDISPLAYVERSION
="$(VERSION)" \
1101 $(SRC_PATH
)/qemu.nsi
1104 $(SIGNCODE
) $(INSTALLER
)
1108 # Add a dependency on the generated files, so that they are always
1109 # rebuilt before other object files
1110 ifneq ($(wildcard config-host.mak
),)
1111 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
1112 Makefile
: $(generated-files-y
)
1116 .SECONDARY
: $(TRACE_HEADERS
) $(TRACE_HEADERS
:%=%-timestamp
) \
1117 $(TRACE_SOURCES
) $(TRACE_SOURCES
:%=%-timestamp
) \
1118 $(TRACE_DTRACE
) $(TRACE_DTRACE
:%=%-timestamp
)
1120 # Include automatically generated dependency files
1121 # Dependencies in Makefile.objs files come from our recursive subdir rules
1122 -include $(wildcard *.d tests
/*.d
)
1124 include $(SRC_PATH
)/tests
/docker
/Makefile.
include
1125 include $(SRC_PATH
)/tests
/vm
/Makefile.
include
1129 @echo
'Generic targets:'
1130 @echo
' all - Build all'
1131 ifdef CONFIG_MODULES
1132 @echo
' modules - Build all modules'
1134 @echo
' dir/file.o - Build specified target only'
1135 @echo
' install - Install QEMU, documentation and tools'
1136 @echo
' ctags/TAGS - Generate tags file for editors'
1137 @echo
' cscope - Generate cscope index'
1139 @
$(if
$(TARGET_DIRS
), \
1140 echo
'Architecture specific targets:'; \
1141 $(foreach t
, $(TARGET_DIRS
), \
1142 printf
" %-30s - Build for %s\\n" $(patsubst %,subdir-
%,$(t
)) $(t
);) \
1144 @echo
'Cleaning targets:'
1145 @echo
' clean - Remove most generated files but keep the config'
1147 @echo
' clean-coverage - Remove coverage files'
1149 @echo
' distclean - Remove all generated files'
1150 @echo
' dist - Build a distributable tarball'
1152 @echo
'Test targets:'
1153 @echo
' check - Run all tests (check-help for details)'
1154 @echo
' docker - Help about targets running tests inside Docker containers'
1155 @echo
' vm-test - Help about targets running tests inside VM'
1157 @echo
'Documentation targets:'
1158 @echo
' html info pdf txt'
1159 @echo
' - Build documentation in specified format'
1161 @echo
' coverage-report - Create code coverage report'
1165 @echo
'Windows targets:'
1166 @echo
' installer - Build NSIS-based installer for QEMU'
1167 ifdef QEMU_GA_MSI_ENABLED
1168 @echo
' msi - Build MSI-based installer for qemu-ga'
1172 @echo
' $(MAKE) [targets] (quiet build, default)'
1173 @echo
' $(MAKE) V=1 [targets] (verbose build)'