3 # Always point to the root of the build tree (needs GNU make).
6 # Before including a proper config-host.mak, assume we are in the source tree
9 UNCHECKED_GOALS
:= %clean TAGS cscope ctags
dist \
11 help check-help print-
% \
12 docker docker-
% vm-test vm-build-
%
17 # All following code might depend on configuration variables
18 ifneq ($(wildcard config-host.mak
),)
19 # Put the all: rule here so that config-host.mak can contain dependencies.
21 include config-host.mak
25 .PHONY
: git-submodule-update
27 git_module_status
:= $(shell \
29 GIT
="$(GIT)" .
/scripts
/git-submodule.sh status
$(GIT_SUBMODULES
); \
33 ifeq (1,$(git_module_status
))
34 ifeq (no
,$(GIT_UPDATE
))
36 $(call quiet-command
, \
38 echo
"GIT submodule checkout is out of date. Please run" && \
39 echo
" scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \
40 echo
"from the source directory checkout $(SRC_PATH)" && \
45 $(call quiet-command
, \
46 (cd
$(SRC_PATH
) && GIT
="$(GIT)" .
/scripts
/git-submodule.sh update
$(GIT_SUBMODULES
)), \
47 "GIT","$(GIT_SUBMODULES)")
51 .git-submodule-status
: git-submodule-update config-host.mak
53 # Check that we're not trying to do an out-of-tree build from
54 # a tree that's been used for an in-tree build.
55 ifneq ($(realpath
$(SRC_PATH
)),$(realpath .
))
56 ifneq ($(wildcard $(SRC_PATH
)/config-host.mak
),)
57 $(error This is an out of tree build but your source tree
($(SRC_PATH
)) \
58 seems to have been used for an in-tree build. You can fix this by running \
59 "$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree
)
63 CONFIG_SOFTMMU
:= $(if
$(filter %-softmmu
,$(TARGET_DIRS
)),y
)
64 CONFIG_USER_ONLY
:= $(if
$(filter %-user
,$(TARGET_DIRS
)),y
)
65 CONFIG_XEN
:= $(CONFIG_XEN_BACKEND
)
67 -include config-all-devices.mak
68 -include config-all-disas.mak
70 config-host.mak
: $(SRC_PATH
)/configure
$(SRC_PATH
)/pc-bios
$(SRC_PATH
)/VERSION
71 @echo
$@ is out-of-date
, running configure
72 @
# TODO: The next lines include code which supports a smooth
73 @
# transition from old configurations without config.status.
74 @
# This code can be removed after QEMU 1.7.
75 @if
test -x config.status
; then \
78 sed
-n
"/.*Configured with/s/[^:]*: //p" $@ | sh
; \
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 # 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
= 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
+= $(GENERATED_QAPI_FILES
)
126 GENERATED_FILES
+= trace
/generated-tcg-tracers.h
128 GENERATED_FILES
+= trace
/generated-helpers-wrappers.h
129 GENERATED_FILES
+= trace
/generated-helpers.h
130 GENERATED_FILES
+= trace
/generated-helpers.c
132 ifdef CONFIG_TRACE_UST
133 GENERATED_FILES
+= trace-ust-all.h
134 GENERATED_FILES
+= trace-ust-all.c
137 GENERATED_FILES
+= module_block.h
139 TRACE_HEADERS
= trace-root.h
$(trace-events-subdirs
:%=%/trace.h
)
140 TRACE_SOURCES
= trace-root.c
$(trace-events-subdirs
:%=%/trace.c
)
142 ifdef CONFIG_TRACE_DTRACE
143 TRACE_HEADERS
+= trace-dtrace-root.h
$(trace-events-subdirs
:%=%/trace-dtrace.h
)
144 TRACE_DTRACE
+= trace-dtrace-root.dtrace
$(trace-events-subdirs
:%=%/trace-dtrace.dtrace
)
146 ifdef CONFIG_TRACE_UST
147 TRACE_HEADERS
+= trace-ust-root.h
$(trace-events-subdirs
:%=%/trace-ust.h
)
150 GENERATED_FILES
+= $(TRACE_HEADERS
)
151 GENERATED_FILES
+= $(TRACE_SOURCES
)
152 GENERATED_FILES
+= $(BUILD_DIR
)/trace-events-all
153 GENERATED_FILES
+= .git-submodule-status
155 trace-group-name
= $(shell dirname
$1 | sed
-e
's/[^a-zA-Z0-9]/_/g')
157 tracetool-y
= $(SRC_PATH
)/scripts
/tracetool.py
158 tracetool-y
+= $(shell find
$(SRC_PATH
)/scripts
/tracetool
-name
"*.py")
160 %/trace.h
: %/trace.h-timestamp
161 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
162 %/trace.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
163 $(call quiet-command
,$(TRACETOOL
) \
164 --group
=$(call trace-group-name
,$@
) \
166 --backends
=$(TRACE_BACKENDS
) \
167 $< > $@
,"GEN","$(@:%-timestamp=%)")
169 %/trace.c
: %/trace.c-timestamp
170 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
171 %/trace.c-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
172 $(call quiet-command
,$(TRACETOOL
) \
173 --group
=$(call trace-group-name
,$@
) \
175 --backends
=$(TRACE_BACKENDS
) \
176 $< > $@
,"GEN","$(@:%-timestamp=%)")
178 %/trace-ust.h
: %/trace-ust.h-timestamp
179 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
180 %/trace-ust.h-timestamp
: $(SRC_PATH
)/%/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
181 $(call quiet-command
,$(TRACETOOL
) \
182 --group
=$(call trace-group-name
,$@
) \
183 --format
=ust-events-h \
184 --backends
=$(TRACE_BACKENDS
) \
185 $< > $@
,"GEN","$(@:%-timestamp=%)")
187 %/trace-dtrace.dtrace
: %/trace-dtrace.dtrace-timestamp
188 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
189 %/trace-dtrace.dtrace-timestamp
: $(SRC_PATH
)/%/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
190 $(call quiet-command
,$(TRACETOOL
) \
191 --group
=$(call trace-group-name
,$@
) \
193 --backends
=$(TRACE_BACKENDS
) \
194 $< > $@
,"GEN","$(@:%-timestamp=%)")
196 %/trace-dtrace.h
: %/trace-dtrace.dtrace
$(tracetool-y
)
197 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
199 %/trace-dtrace.o
: %/trace-dtrace.dtrace
$(tracetool-y
)
202 trace-root.h
: trace-root.h-timestamp
203 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
204 trace-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
205 $(call quiet-command
,$(TRACETOOL
) \
208 --backends
=$(TRACE_BACKENDS
) \
209 $< > $@
,"GEN","$(@:%-timestamp=%)")
211 trace-root.c
: trace-root.c-timestamp
212 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
213 trace-root.c-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
214 $(call quiet-command
,$(TRACETOOL
) \
217 --backends
=$(TRACE_BACKENDS
) \
218 $< > $@
,"GEN","$(@:%-timestamp=%)")
220 trace-ust-root.h
: trace-ust-root.h-timestamp
221 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
222 trace-ust-root.h-timestamp
: $(SRC_PATH
)/trace-events
$(tracetool-y
) $(BUILD_DIR
)/config-host.mak
223 $(call quiet-command
,$(TRACETOOL
) \
225 --format
=ust-events-h \
226 --backends
=$(TRACE_BACKENDS
) \
227 $< > $@
,"GEN","$(@:%-timestamp=%)")
229 trace-ust-all.h
: trace-ust-all.h-timestamp
230 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
231 trace-ust-all.h-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
232 $(call quiet-command
,$(TRACETOOL
) \
234 --format
=ust-events-h \
235 --backends
=$(TRACE_BACKENDS
) \
236 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
238 trace-ust-all.c
: trace-ust-all.c-timestamp
239 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
240 trace-ust-all.c-timestamp
: $(trace-events-files
) $(tracetool-y
) $(BUILD_DIR
)/config-host.mak
241 $(call quiet-command
,$(TRACETOOL
) \
243 --format
=ust-events-c \
244 --backends
=$(TRACE_BACKENDS
) \
245 $(trace-events-files
) > $@
,"GEN","$(@:%-timestamp=%)")
247 trace-dtrace-root.dtrace
: trace-dtrace-root.dtrace-timestamp
248 @cmp
$< $@
>/dev
/null
2>&1 || cp
$< $@
249 trace-dtrace-root.dtrace-timestamp
: $(SRC_PATH
)/trace-events
$(BUILD_DIR
)/config-host.mak
$(tracetool-y
)
250 $(call quiet-command
,$(TRACETOOL
) \
253 --backends
=$(TRACE_BACKENDS
) \
254 $< > $@
,"GEN","$(@:%-timestamp=%)")
256 trace-dtrace-root.h
: trace-dtrace-root.dtrace
257 $(call quiet-command
,dtrace
-o
$@
-h
-s
$<, "GEN","$@")
259 trace-dtrace-root.o
: trace-dtrace-root.dtrace
261 KEYCODEMAP_GEN
= $(SRC_PATH
)/ui
/keycodemapdb
/tools
/keymap-gen
262 KEYCODEMAP_CSV
= $(SRC_PATH
)/ui
/keycodemapdb
/data
/keymaps.csv
265 ui
/input-keymap-atset1-to-qcode.c \
266 ui
/input-keymap-linux-to-qcode.c \
267 ui
/input-keymap-qcode-to-atset1.c \
268 ui
/input-keymap-qcode-to-atset2.c \
269 ui
/input-keymap-qcode-to-atset3.c \
270 ui
/input-keymap-qcode-to-linux.c \
271 ui
/input-keymap-qcode-to-qnum.c \
272 ui
/input-keymap-qcode-to-sun.c \
273 ui
/input-keymap-qnum-to-qcode.c \
274 ui
/input-keymap-usb-to-qcode.c \
275 ui
/input-keymap-win32-to-qcode.c \
276 ui
/input-keymap-x11-to-qcode.c \
277 ui
/input-keymap-xorgevdev-to-qcode.c \
278 ui
/input-keymap-xorgkbd-to-qcode.c \
279 ui
/input-keymap-xorgxquartz-to-qcode.c \
280 ui
/input-keymap-xorgxwin-to-qcode.c \
281 ui
/input-keymap-osx-to-qcode.c \
284 GENERATED_FILES
+= $(KEYCODEMAP_FILES
)
286 ui
/input-keymap-
%.c
: $(KEYCODEMAP_GEN
) $(KEYCODEMAP_CSV
) $(SRC_PATH
)/ui
/Makefile.objs
287 $(call quiet-command
,\
288 stem
=$* && src
=$${stem
%-to-
*} dst
=$${stem
#*-to-} && \
289 test -e
$(KEYCODEMAP_GEN
) && \
290 $(PYTHON
) $(KEYCODEMAP_GEN
) \
292 --varname qemu_input_map_
$${src}_to_
$${dst} \
293 code-map
$(KEYCODEMAP_CSV
) $${src} $${dst} \
294 > $@ ||
rm -f
$@
, "GEN", "$@")
296 $(KEYCODEMAP_GEN
): .git-submodule-status
297 $(KEYCODEMAP_CSV
): .git-submodule-status
299 # Don't try to regenerate Makefile or configure
300 # We don't generate any of them
304 .PHONY
: all clean cscope
distclean html
info install install-doc \
305 pdf txt recurse-all
dist msi FORCE
307 $(call set-vpath
, $(SRC_PATH
))
309 LIBS
+=-lz
$(LIBS_TOOLS
)
311 HELPERS-
$(call land
,$(CONFIG_SOFTMMU
),$(CONFIG_LINUX
)) = qemu-bridge-helper
$(EXESUF
)
314 DOCS
=qemu-doc.html qemu-doc.txt qemu
.1 qemu-img
.1 qemu-nbd
.8 qemu-ga
.8
315 DOCS
+=docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7
316 DOCS
+=docs
/interop
/qemu-ga-ref.html docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7
317 DOCS
+=docs
/qemu-block-drivers
.7
318 DOCS
+=docs
/qemu-cpu-models
.7
320 DOCS
+=fsdev
/virtfs-proxy-helper
.1
322 ifdef CONFIG_TRACE_SYSTEMTAP
323 DOCS
+=scripts
/qemu-trace-stap
.1
329 SUBDIR_MAKEFLAGS
=$(if
$(V
),,--no-print-directory
--quiet
) BUILD_DIR
=$(BUILD_DIR
)
330 SUBDIR_DEVICES_MAK
=$(patsubst %, %/config-devices.mak
, $(TARGET_DIRS
))
331 SUBDIR_DEVICES_MAK_DEP
=$(patsubst %, %-config-devices.mak.d
, $(TARGET_DIRS
))
333 ifeq ($(SUBDIR_DEVICES_MAK
),)
334 config-all-devices.mak
:
335 $(call quiet-command
,echo
'# no devices' > $@
,"GEN","$@")
337 config-all-devices.mak
: $(SUBDIR_DEVICES_MAK
)
338 $(call quiet-command
, sed
-n \
339 's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
340 $(SUBDIR_DEVICES_MAK
) |
sort -u
> $@
, \
344 -include $(SUBDIR_DEVICES_MAK_DEP
)
346 %/config-devices.mak
: default-configs
/%.mak
$(SRC_PATH
)/scripts
/make_device_config.sh
347 $(call quiet-command
, \
348 $(SHELL
) $(SRC_PATH
)/scripts
/make_device_config.sh
$< $*-config-devices.mak.d
$@
> $@.tmp
,"GEN","$@.tmp")
349 $(call quiet-command
, if
test -f
$@
; then \
350 if cmp
-s
$@.old
$@
; then \
354 if
test -f
$@.old
; then \
355 echo
"WARNING: $@ (user modified) out of date.";\
357 echo
"WARNING: $@ out of date.";\
359 echo
"Run \"$(MAKE) defconfig\" to regenerate."; \
368 rm -f config-all-devices.mak
$(SUBDIR_DEVICES_MAK
)
370 ifneq ($(wildcard config-host.mak
),)
371 include $(SRC_PATH
)/Makefile.objs
374 dummy
:= $(call unnest-vars
,, \
381 ivshmem-client-obj-y \
382 ivshmem-server-obj-y \
384 libvhost-user-obj-y \
385 vhost-user-scsi-obj-y \
386 vhost-user-blk-obj-y \
403 include $(SRC_PATH
)/tests
/Makefile.
include
405 all: $(DOCS
) $(if
$(BUILD_DOCS
),sphinxdocs
) $(TOOLS
) $(HELPERS-y
) recurse-all modules
407 qemu-version.h
: FORCE
408 $(call quiet-command
, \
409 (printf
'#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
410 printf
'#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
412 $(call quiet-command
, if
! cmp
-s
$@
$@.tmp
; then \
418 config-host.h
: config-host.h-timestamp
419 config-host.h-timestamp
: config-host.mak
420 qemu-options.def
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
421 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
423 SUBDIR_RULES
=$(patsubst %,subdir-
%, $(TARGET_DIRS
))
424 SOFTMMU_SUBDIR_RULES
=$(filter %-softmmu
,$(SUBDIR_RULES
))
426 $(SOFTMMU_SUBDIR_RULES
): $(authz-obj-y
)
427 $(SOFTMMU_SUBDIR_RULES
): $(block-obj-y
)
428 $(SOFTMMU_SUBDIR_RULES
): $(crypto-obj-y
)
429 $(SOFTMMU_SUBDIR_RULES
): $(io-obj-y
)
430 $(SOFTMMU_SUBDIR_RULES
): config-all-devices.mak
433 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C
$* V
="$(V)" TARGET_DIR
="$*/" all,)
435 DTC_MAKE_ARGS
=-I
$(SRC_PATH
)/dtc VPATH
=$(SRC_PATH
)/dtc
-C dtc V
="$(V)" LIBFDT_srcdir
=$(SRC_PATH
)/dtc
/libfdt
436 DTC_CFLAGS
=$(CFLAGS
) $(QEMU_CFLAGS
)
437 DTC_CPPFLAGS
=-I
$(BUILD_DIR
)/dtc
-I
$(SRC_PATH
)/dtc
-I
$(SRC_PATH
)/dtc
/libfdt
439 subdir-dtc
: .git-submodule-status dtc
/libfdt dtc
/tests
440 $(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
,)
442 dtc
/%: .git-submodule-status
445 # Overriding CFLAGS causes us to lose defines added in the sub-makefile.
446 # Not overriding CFLAGS leads to mis-matches between compilation modes.
447 # Therefore we replicate some of the logic in the sub-makefile.
448 # Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
449 # no need to annoy QEMU developers with such things.
450 CAP_CFLAGS
= $(patsubst -W
%,,$(CFLAGS
) $(QEMU_CFLAGS
))
451 CAP_CFLAGS
+= -DCAPSTONE_USE_SYS_DYN_MEM
452 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM
453 CAP_CFLAGS
+= -DCAPSTONE_HAS_ARM64
454 CAP_CFLAGS
+= -DCAPSTONE_HAS_POWERPC
455 CAP_CFLAGS
+= -DCAPSTONE_HAS_X86
457 subdir-capstone
: .git-submodule-status
458 $(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
))
460 $(SUBDIR_RULES
): libqemuutil.a
$(common-obj-y
) $(chardev-obj-y
) $(slirp-obj-y
) \
461 $(qom-obj-y
) $(crypto-aes-obj-
$(CONFIG_USER_ONLY
))
463 ROMSUBDIR_RULES
=$(patsubst %,romsubdir-
%, $(ROMS
))
464 # Only keep -O and -g cflags
466 $(call quiet-command
,$(MAKE
) $(SUBDIR_MAKEFLAGS
) -C pc-bios
/$* V
="$(V)" TARGET_DIR
="$*/" CFLAGS
="$(filter -O% -g%,$(CFLAGS))",)
468 ALL_SUBDIRS
=$(TARGET_DIRS
) $(patsubst %,pc-bios
/%, $(ROMS
))
470 recurse-all
: $(SUBDIR_RULES
) $(ROMSUBDIR_RULES
)
472 $(BUILD_DIR
)/version.o
: $(SRC_PATH
)/version.rc config-host.h
473 $(call quiet-command
,$(WINDRES
) -I
$(BUILD_DIR
) -o
$@
$<,"RC","version.o")
475 Makefile
: $(version-obj-y
)
477 ######################################################################
480 libqemuutil.a
: $(util-obj-y
) $(trace-obj-y
) $(stub-obj-y
)
481 libvhost-user.a
: $(libvhost-user-obj-y
)
483 ######################################################################
485 COMMON_LDADDS
= libqemuutil.a
487 qemu-img.o
: qemu-img-cmds.h
489 qemu-img
$(EXESUF
): qemu-img.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
490 qemu-nbd
$(EXESUF
): qemu-nbd.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
491 qemu-io
$(EXESUF
): qemu-io.o
$(authz-obj-y
) $(block-obj-y
) $(crypto-obj-y
) $(io-obj-y
) $(qom-obj-y
) $(COMMON_LDADDS
)
493 qemu-bridge-helper
$(EXESUF
): qemu-bridge-helper.o
$(COMMON_LDADDS
)
495 qemu-keymap
$(EXESUF
): qemu-keymap.o ui
/input-keymap.o
$(COMMON_LDADDS
)
497 qemu-edid
$(EXESUF
): qemu-edid.o hw
/display
/edid-generate.o
$(COMMON_LDADDS
)
499 fsdev
/virtfs-proxy-helper
$(EXESUF
): fsdev
/virtfs-proxy-helper.o fsdev
/9p-marshal.o fsdev
/9p-iov-marshal.o
$(COMMON_LDADDS
)
500 fsdev
/virtfs-proxy-helper
$(EXESUF
): LIBS
+= -lcap
502 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
)
504 scsi
/qemu-pr-helper
$(EXESUF
): LIBS
+= -ludev
-lmultipath
-lmpathpersist
507 qemu-img-cmds.h
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
508 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-h
< $< > $@
,"GEN","$@")
510 qemu-ga
$(EXESUF
): LIBS
= $(LIBS_QGA
)
511 qemu-ga
$(EXESUF
): QEMU_CFLAGS
+= -I qga
/qapi-generated
513 qemu-keymap
$(EXESUF
): LIBS
+= $(XKBCOMMON_LIBS
)
514 qemu-keymap
$(EXESUF
): QEMU_CFLAGS
+= $(XKBCOMMON_CFLAGS
)
516 qapi-py
= $(SRC_PATH
)/scripts
/qapi
/commands.py \
517 $(SRC_PATH
)/scripts
/qapi
/events.py \
518 $(SRC_PATH
)/scripts
/qapi
/introspect.py \
519 $(SRC_PATH
)/scripts
/qapi
/types.py \
520 $(SRC_PATH
)/scripts
/qapi
/visit.py \
521 $(SRC_PATH
)/scripts
/qapi
/common.py \
522 $(SRC_PATH
)/scripts
/qapi
/doc.py \
523 $(SRC_PATH
)/scripts
/qapi-gen.py
525 qga
/qapi-generated
/qga-qapi-types.c qga
/qapi-generated
/qga-qapi-types.h \
526 qga
/qapi-generated
/qga-qapi-visit.c qga
/qapi-generated
/qga-qapi-visit.h \
527 qga
/qapi-generated
/qga-qapi-commands.h qga
/qapi-generated
/qga-qapi-commands.c \
528 qga
/qapi-generated
/qga-qapi-doc.texi
: \
529 qga
/qapi-generated
/qapi-gen-timestamp
;
530 qga
/qapi-generated
/qapi-gen-timestamp
: $(SRC_PATH
)/qga
/qapi-schema.json
$(qapi-py
)
531 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
532 -o qga
/qapi-generated
-p
"qga-" $<, \
533 "GEN","$(@:%-timestamp=%)")
536 qapi-modules
= $(SRC_PATH
)/qapi
/qapi-schema.json \
537 $(QAPI_MODULES
:%=$(SRC_PATH
)/qapi
/%.json
)
539 $(GENERATED_QAPI_FILES
): qapi-gen-timestamp
;
540 qapi-gen-timestamp
: $(qapi-modules
) $(qapi-py
)
541 $(call quiet-command
,$(PYTHON
) $(SRC_PATH
)/scripts
/qapi-gen.py \
543 "GEN","$(@:%-timestamp=%)")
546 QGALIB_GEN
=$(addprefix qga
/qapi-generated
/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h
)
547 $(qga-obj-y
): $(QGALIB_GEN
)
549 qemu-ga
$(EXESUF
): $(qga-obj-y
) $(COMMON_LDADDS
)
552 ifdef QEMU_GA_MSI_ENABLED
553 QEMU_GA_MSI
=qemu-ga-
$(ARCH
).msi
557 $(QEMU_GA_MSI
): qemu-ga.exe
$(QGA_VSS_PROVIDER
)
559 $(QEMU_GA_MSI
): config-host.mak
561 $(QEMU_GA_MSI
): $(SRC_PATH
)/qga
/installer
/qemu-ga.wxs
562 $(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)" \
563 wixl
-o
$@
$(QEMU_GA_MSI_ARCH
) $(QEMU_GA_MSI_WITH_VSS
) $(QEMU_GA_MSI_MINGW_DLL_PATH
) $<,"WIXL","$@")
566 @echo
"MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
571 qemu-ga
: qemu-ga
$(EXESUF
) $(QGA_VSS_PROVIDER
) $(QEMU_GA_MSI
)
574 elf2dmp
$(EXESUF
): LIBS
+= $(CURL_LIBS
)
575 elf2dmp
$(EXESUF
): $(elf2dmp-obj-y
)
579 ivshmem-client
$(EXESUF
): $(ivshmem-client-obj-y
) $(COMMON_LDADDS
)
581 ivshmem-server
$(EXESUF
): $(ivshmem-server-obj-y
) $(COMMON_LDADDS
)
584 vhost-user-scsi
$(EXESUF
): $(vhost-user-scsi-obj-y
) libvhost-user.a
586 vhost-user-blk
$(EXESUF
): $(vhost-user-blk-obj-y
) libvhost-user.a
589 rdmacm-mux
$(EXESUF
): LIBS
+= "-libumad"
590 rdmacm-mux
$(EXESUF
): $(rdmacm-mux-obj-y
) $(COMMON_LDADDS
)
593 module_block.h
: $(SRC_PATH
)/scripts
/modules
/module_block.py config-host.mak
594 $(call quiet-command
,$(PYTHON
) $< $@ \
595 $(addprefix $(SRC_PATH
)/,$(patsubst %.mo
,%.c
,$(block-obj-m
))), \
599 .PHONY
: clean-coverage
601 $(call quiet-command
, \
602 find . \
( -name
'*.gcda' -o
-name
'*.gcov' \
) -type f
-exec
rm {} +, \
603 "CLEAN", "coverage files")
607 # avoid old build problems by removing potentially incorrect old files
608 rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
609 rm -f qemu-options.def
611 find . \
( -name
'*.so' -o
-name
'*.dll' -o
-name
'*.mo' -o
-name
'*.[oda]' \
) -type f \
612 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-aarch64.a \
613 ! -path .
/roms
/edk2
/ArmPkg
/Library
/GccLto
/liblto-arm.a \
614 ! -path .
/roms
/edk2
/BaseTools
/Source
/Python
/UPT
/Dll
/sqlite3.dll \
616 rm -f
$(filter-out %.tlb
,$(TOOLS
)) $(HELPERS-y
) qemu-ga TAGS cscope.
* *.pod
*~
*/*~
617 rm -f fsdev
/*.pod scsi
/*.pod
618 rm -f qemu-img-cmds.h
619 rm -f ui
/shader
/*-vert.h ui
/shader
/*-frag.h
620 @
# May not be present in GENERATED_FILES
621 rm -f trace
/generated-tracers-dtrace.dtrace
*
622 rm -f trace
/generated-tracers-dtrace.h
*
623 rm -f
$(foreach f
,$(GENERATED_FILES
),$(f
) $(f
)-timestamp
)
624 rm -f qapi-gen-timestamp
625 rm -rf qga
/qapi-generated
626 for d in
$(ALL_SUBDIRS
); do \
627 if
test -d
$$d; then
$(MAKE
) -C
$$d $@ || exit
1; fi
; \
628 rm -f
$$d/qemu-options.def
; \
630 rm -f config-all-devices.mak
632 VERSION ?
= $(shell cat VERSION
)
634 dist: qemu-
$(VERSION
).
tar.bz2
637 $(SRC_PATH
)/scripts
/make-release
"$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
639 # Note that these commands assume that there are no HTML files in
640 # the docs subdir in the source tree! If there are then this will
641 # blow them away for an in-source-tree 'make clean'.
642 define clean-manual
=
643 rm -rf docs
/$1/_static
644 rm -f docs
/$1/objects.inv docs
/$1/searchindex.js docs
/$1/*.html
648 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
649 rm -f config-all-devices.mak config-all-disas.mak config.status
650 rm -f
$(SUBDIR_DEVICES_MAK
)
651 rm -f po
/*.mo tests
/qemu-iotests
/common.env
652 rm -f roms
/seabios
/config.mak roms
/vgabios
/config.mak
653 rm -f qemu-doc.
info qemu-doc.aux qemu-doc.cp qemu-doc.cps
654 rm -f qemu-doc.fn qemu-doc.fns qemu-doc.
info qemu-doc.ky qemu-doc.kys
655 rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
656 rm -f qemu-doc.vr qemu-doc.txt
658 rm -f linux-headers
/asm
659 rm -f docs
/version.texi
660 rm -f docs
/interop
/qemu-ga-qapi.texi docs
/interop
/qemu-qmp-qapi.texi
661 rm -f docs
/interop
/qemu-qmp-ref
.7 docs
/interop
/qemu-ga-ref
.7
662 rm -f docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
663 rm -f docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
664 rm -f docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html
665 rm -f docs
/qemu-block-drivers
.7
666 rm -f docs
/qemu-cpu-models
.7
668 $(call clean-manual
,devel
)
669 $(call clean-manual
,interop
)
670 for d in
$(TARGET_DIRS
); do \
671 rm -rf
$$d || exit
1 ; \
674 if
test -f dtc
/version_gen.h
; then
$(MAKE
) $(DTC_MAKE_ARGS
) clean; fi
676 KEYMAPS
=da en-gb et fr fr-ch is lt no pt-br sv \
677 ar de en-us fi fr-be hr it lv nl pl ru th \
678 de-ch es fo fr-ca hu ja mk pt sl tr \
682 BLOBS
=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
683 vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
684 vgabios-ramfb.bin vgabios-bochs-display.bin \
685 ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU
,tcx.bin QEMU
,cgthree.bin \
686 pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
687 pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
688 efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
689 efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
690 efi-e1000e.rom efi-vmxnet3.rom \
691 bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
692 multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
693 s390-ccw.img s390-netboot.img \
694 spapr-rtas.bin slof.bin skiboot.lid \
696 u-boot.e500 u-boot-sam460-20100605.bin \
703 define install-manual
=
704 for d in
$$(cd docs
&& find
$1 -type d
); do
$(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)/$$d"; done
705 for f in
$$(cd docs
&& find
$1 -type f
); do
$(INSTALL_DATA
) "docs/$$f" "$(DESTDIR)$(qemu_docdir)/$$f"; done
708 # Note that we deliberately do not install the "devel" manual: it is
709 # for QEMU developers, and not interesting to our users.
710 .PHONY
: install-sphinxdocs
711 install-sphinxdocs
: sphinxdocs
712 $(call install-manual
,interop
)
714 install-doc
: $(DOCS
) install-sphinxdocs
715 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_docdir)"
716 $(INSTALL_DATA
) qemu-doc.html
"$(DESTDIR)$(qemu_docdir)"
717 $(INSTALL_DATA
) qemu-doc.txt
"$(DESTDIR)$(qemu_docdir)"
718 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.html
"$(DESTDIR)$(qemu_docdir)"
719 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref.txt
"$(DESTDIR)$(qemu_docdir)"
721 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
722 $(INSTALL_DATA
) qemu
.1 "$(DESTDIR)$(mandir)/man1"
723 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man7"
724 $(INSTALL_DATA
) docs
/interop
/qemu-qmp-ref
.7 "$(DESTDIR)$(mandir)/man7"
725 $(INSTALL_DATA
) docs
/qemu-block-drivers
.7 "$(DESTDIR)$(mandir)/man7"
726 $(INSTALL_DATA
) docs
/qemu-cpu-models
.7 "$(DESTDIR)$(mandir)/man7"
728 $(INSTALL_DATA
) qemu-img
.1 "$(DESTDIR)$(mandir)/man1"
729 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man8"
730 $(INSTALL_DATA
) qemu-nbd
.8 "$(DESTDIR)$(mandir)/man8"
732 ifdef CONFIG_TRACE_SYSTEMTAP
733 $(INSTALL_DATA
) scripts
/qemu-trace-stap
.1 "$(DESTDIR)$(mandir)/man1"
735 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
736 $(INSTALL_DATA
) qemu-ga
.8 "$(DESTDIR)$(mandir)/man8"
737 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.html
"$(DESTDIR)$(qemu_docdir)"
738 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref.txt
"$(DESTDIR)$(qemu_docdir)"
739 $(INSTALL_DATA
) docs
/interop
/qemu-ga-ref
.7 "$(DESTDIR)$(mandir)/man7"
743 $(INSTALL_DIR
) "$(DESTDIR)$(mandir)/man1"
744 $(INSTALL_DATA
) fsdev
/virtfs-proxy-helper
.1 "$(DESTDIR)$(mandir)/man1"
748 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)"
750 install-localstatedir
:
752 ifneq (,$(findstring qemu-ga
,$(TOOLS
)))
753 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_localstatedir)"/run
757 ICON_SIZES
=16x16
24x24
32x32
48x48
64x64
128x128
256x256
512x512
759 install: all $(if
$(BUILD_DOCS
),install-doc
) install-datadir install-localstatedir
761 $(call install-prog
,$(subst qemu-ga
,qemu-ga
$(EXESUF
),$(TOOLS
)),$(DESTDIR
)$(bindir))
763 ifneq ($(CONFIG_MODULES
),)
764 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_moddir)"
765 for s in
$(modules-m
:.mo
=$(DSOSUF
)); do \
766 t
="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
767 $(INSTALL_LIB
) $$s "$$t"; \
768 test -z
"$(STRIP)" ||
$(STRIP
) "$$t"; \
771 ifneq ($(HELPERS-y
),)
772 $(call install-prog
,$(HELPERS-y
),$(DESTDIR
)$(libexecdir
))
774 ifdef CONFIG_TRACE_SYSTEMTAP
775 $(INSTALL_PROG
) "scripts/qemu-trace-stap" $(DESTDIR
)$(bindir)
778 set
-e
; for x in
$(BLOBS
); do \
779 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/$$x "$(DESTDIR)$(qemu_datadir)"; \
782 for s in
$(ICON_SIZES
); do \
783 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/$${s}/apps"; \
784 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_
$${s}.png \
785 "$(DESTDIR)/$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
787 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/32x32/apps"; \
788 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu_32x32.bmp \
789 "$(DESTDIR)/$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
790 mkdir
-p
"$(DESTDIR)/$(qemu_icondir)/hicolor/scalable/apps"; \
791 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/icons
/qemu.svg \
792 "$(DESTDIR)/$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
793 mkdir
-p
"$(DESTDIR)/$(qemu_desktopdir)"
794 $(INSTALL_DATA
) $(SRC_PATH
)/ui
/qemu.desktop \
795 "$(DESTDIR)/$(qemu_desktopdir)/qemu.desktop"
799 $(INSTALL_DIR
) "$(DESTDIR)$(qemu_datadir)/keymaps"
800 set
-e
; for x in
$(KEYMAPS
); do \
801 $(INSTALL_DATA
) $(SRC_PATH
)/pc-bios
/keymaps
/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
803 $(INSTALL_DATA
) $(BUILD_DIR
)/trace-events-all
"$(DESTDIR)$(qemu_datadir)/trace-events-all"
804 for d in
$(TARGET_DIRS
); do \
805 $(MAKE
) $(SUBDIR_MAKEFLAGS
) TARGET_DIR
=$$d/ -C
$$d $@ || exit
1 ; \
811 find
"$(SRC_PATH)" -name
'*.[hc]' -exec ctags
--append
{} +
816 find
"$(SRC_PATH)" -name
'*.[hc]' -exec etags
--append
{} +
819 rm -f
"$(SRC_PATH)"/cscope.
*
820 find
"$(SRC_PATH)/" -name
"*.[chsS]" -print | sed
's,^\./,,' > "$(SRC_PATH)/cscope.files"
821 cscope
-b
-i
"$(SRC_PATH)/cscope.files"
823 # opengl shader programs
824 ui
/shader
/%-vert.h
: $(SRC_PATH
)/ui
/shader
/%.vert
$(SRC_PATH
)/scripts
/shaderinclude.pl
826 $(call quiet-command
,\
827 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
830 ui
/shader
/%-frag.h
: $(SRC_PATH
)/ui
/shader
/%.frag
$(SRC_PATH
)/scripts
/shaderinclude.pl
832 $(call quiet-command
,\
833 perl
$(SRC_PATH
)/scripts
/shaderinclude.pl
$< > $@
,\
836 ui
/shader.o
: $(SRC_PATH
)/ui
/shader.c \
837 ui
/shader
/texture-blit-vert.h \
838 ui
/shader
/texture-blit-flip-vert.h \
839 ui
/shader
/texture-blit-frag.h
843 MAKEINFOINCLUDES
= -I docs
-I
$(<D
) -I
$(@D
)
844 MAKEINFOFLAGS
=--no-split
--number-sections
$(MAKEINFOINCLUDES
)
845 TEXI2PODFLAGS
=$(MAKEINFOINCLUDES
) "-DVERSION=$(VERSION)"
846 TEXI2PDFFLAGS
=$(if
$(V
),,--quiet
) -I
$(SRC_PATH
) $(MAKEINFOINCLUDES
)
848 docs
/version.texi
: $(SRC_PATH
)/VERSION
849 $(call quiet-command
,echo
"@set VERSION $(VERSION)" > $@
,"GEN","$@")
851 %.html
: %.texi docs
/version.texi
852 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
853 --html
$< -o
$@
,"GEN","$@")
855 %.
info: %.texi docs
/version.texi
856 $(call quiet-command
,$(MAKEINFO
) $(MAKEINFOFLAGS
) $< -o
$@
,"GEN","$@")
858 %.txt
: %.texi docs
/version.texi
859 $(call quiet-command
,LC_ALL
=C
$(MAKEINFO
) $(MAKEINFOFLAGS
) --no-headers \
860 --plaintext
$< -o
$@
,"GEN","$@")
862 %.pdf
: %.texi docs
/version.texi
863 $(call quiet-command
,texi2pdf
$(TEXI2PDFFLAGS
) $< -o
$@
,"GEN","$@")
865 # Sphinx builds all its documentation at once in one invocation
866 # and handles "don't rebuild things unless necessary" itself.
867 # The '.doctrees' files are cached information to speed this up.
869 sphinxdocs
: docs
/devel
/index.html docs
/interop
/index.html
871 # Canned command to build a single manual
872 build-manual
= $(call quiet-command
,sphinx-build
$(if
$(V
),,-q
) -b html
-D version
=$(VERSION
) -D release
="$(FULL_VERSION)" -d .doctrees
/$1 $(SRC_PATH
)/docs
/$1 docs
/$1 ,"SPHINX","docs/$1")
873 # We assume all RST files in the manual's directory are used in it
874 manual-deps
= $(wildcard $(SRC_PATH
)/docs
/$1/*.rst
) $(SRC_PATH
)/docs
/$1/conf.py
$(SRC_PATH
)/docs
/conf.py
876 docs
/devel
/index.html
: $(call manual-deps
,devel
)
877 $(call build-manual
,devel
)
879 docs
/interop
/index.html
: $(call manual-deps
,interop
)
880 $(call build-manual
,interop
)
882 qemu-options.texi
: $(SRC_PATH
)/qemu-options.hx
$(SRC_PATH
)/scripts
/hxtool
883 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
885 qemu-monitor.texi
: $(SRC_PATH
)/hmp-commands.hx
$(SRC_PATH
)/scripts
/hxtool
886 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
888 qemu-monitor-info.texi
: $(SRC_PATH
)/hmp-commands-info.hx
$(SRC_PATH
)/scripts
/hxtool
889 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
891 qemu-img-cmds.texi
: $(SRC_PATH
)/qemu-img-cmds.hx
$(SRC_PATH
)/scripts
/hxtool
892 $(call quiet-command
,sh
$(SRC_PATH
)/scripts
/hxtool
-t
< $< > $@
,"GEN","$@")
894 docs
/interop
/qemu-qmp-qapi.texi
: qapi
/qapi-doc.texi
897 docs
/interop
/qemu-ga-qapi.texi
: qga
/qapi-generated
/qga-qapi-doc.texi
900 qemu
.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
901 qemu
.1: qemu-option-trace.texi
902 qemu-img
.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
903 fsdev
/virtfs-proxy-helper
.1: fsdev
/virtfs-proxy-helper.texi
904 qemu-nbd
.8: qemu-nbd.texi qemu-option-trace.texi
905 qemu-ga
.8: qemu-ga.texi
906 docs
/qemu-block-drivers
.7: docs
/qemu-block-drivers.texi
907 docs
/qemu-cpu-models
.7: docs
/qemu-cpu-models.texi
908 scripts
/qemu-trace-stap
.1: scripts
/qemu-trace-stap.texi
910 html
: qemu-doc.html docs
/interop
/qemu-qmp-ref.html docs
/interop
/qemu-ga-ref.html sphinxdocs
911 info: qemu-doc.
info docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-ga-ref.
info
912 pdf
: qemu-doc.pdf docs
/interop
/qemu-qmp-ref.pdf docs
/interop
/qemu-ga-ref.pdf
913 txt
: qemu-doc.txt docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-ga-ref.txt
915 qemu-doc.html qemu-doc.
info qemu-doc.pdf qemu-doc.txt
: \
916 qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
917 qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
918 qemu-monitor-info.texi docs
/qemu-block-drivers.texi \
919 docs
/qemu-cpu-models.texi
921 docs
/interop
/qemu-ga-ref.
dvi docs
/interop
/qemu-ga-ref.html \
922 docs
/interop
/qemu-ga-ref.
info docs
/interop
/qemu-ga-ref.pdf \
923 docs
/interop
/qemu-ga-ref.txt docs
/interop
/qemu-ga-ref
.7: \
924 docs
/interop
/qemu-ga-ref.texi docs
/interop
/qemu-ga-qapi.texi
926 docs
/interop
/qemu-qmp-ref.
dvi docs
/interop
/qemu-qmp-ref.html \
927 docs
/interop
/qemu-qmp-ref.
info docs
/interop
/qemu-qmp-ref.pdf \
928 docs
/interop
/qemu-qmp-ref.txt docs
/interop
/qemu-qmp-ref
.7: \
929 docs
/interop
/qemu-qmp-ref.texi docs
/interop
/qemu-qmp-qapi.texi
931 $(filter %.1 %.7 %.8,$(DOCS
)): scripts
/texi2pod.pl
935 %/coverage-report.html
:
937 $(call quiet-command
,\
938 gcovr
-p
--html
--html-details
-o
$@
, \
939 "GEN", "coverage-report.html")
941 .PHONY
: coverage-report
942 coverage-report
: $(CURDIR
)/reports
/coverage
/coverage-report.html
946 INSTALLER
= qemu-setup-
$(VERSION
)$(EXESUF
)
948 nsisflags
= -V2
-NOCD
950 ifneq ($(wildcard $(SRC_PATH
)/dll
),)
951 ifeq ($(ARCH
),x86_64
)
953 DLL_PATH
= $(SRC_PATH
)/dll
/w64
957 DLL_PATH
= $(SRC_PATH
)/dll
/w32
962 installer
: $(INSTALLER
)
964 INSTDIR
=/tmp
/qemu-nsis
966 $(INSTALLER
): $(SRC_PATH
)/qemu.nsi
967 $(MAKE
) install prefix=${INSTDIR}
976 for i in qemu-system-
*.exe
; do \
978 arch
=$${arch
#qemu-system-}; \
979 echo Section
\"$$arch\" Section_
$$arch; \
980 echo SetOutPath
\"\
$$INSTDIR\"; \
981 echo File
\"\
$${BINDIR}\\$$i\"; \
984 ) >${INSTDIR}/system-emulations.nsh
985 makensis
$(nsisflags
) \
986 $(if
$(BUILD_DOCS
),-DCONFIG_DOCUMENTATION
="y") \
987 $(if
$(CONFIG_GTK
),-DCONFIG_GTK
="y") \
988 -DBINDIR
="${INSTDIR}" \
989 $(if
$(DLL_PATH
),-DDLLDIR
="$(DLL_PATH)") \
990 -DSRCDIR
="$(SRC_PATH)" \
991 -DOUTFILE
="$(INSTALLER)" \
992 -DDISPLAYVERSION
="$(VERSION)" \
996 $(SIGNCODE
) $(INSTALLER
)
1000 # Add a dependency on the generated files, so that they are always
1001 # rebuilt before other object files
1002 ifneq ($(wildcard config-host.mak
),)
1003 ifneq ($(filter-out $(UNCHECKED_GOALS
),$(MAKECMDGOALS
)),$(if
$(MAKECMDGOALS
),,fail
))
1004 Makefile
: $(GENERATED_FILES
)
1008 .SECONDARY
: $(TRACE_HEADERS
) $(TRACE_HEADERS
:%=%-timestamp
) \
1009 $(TRACE_SOURCES
) $(TRACE_SOURCES
:%=%-timestamp
) \
1010 $(TRACE_DTRACE
) $(TRACE_DTRACE
:%=%-timestamp
)
1012 # Include automatically generated dependency files
1013 # Dependencies in Makefile.objs files come from our recursive subdir rules
1014 -include $(wildcard *.d tests
/*.d
)
1016 include $(SRC_PATH
)/tests
/docker
/Makefile.
include
1017 include $(SRC_PATH
)/tests
/vm
/Makefile.
include
1021 @echo
'Generic targets:'
1022 @echo
' all - Build all'
1023 ifdef CONFIG_MODULES
1024 @echo
' modules - Build all modules'
1026 @echo
' dir/file.o - Build specified target only'
1027 @echo
' install - Install QEMU, documentation and tools'
1028 @echo
' ctags/TAGS - Generate tags file for editors'
1029 @echo
' cscope - Generate cscope index'
1031 @
$(if
$(TARGET_DIRS
), \
1032 echo
'Architecture specific targets:'; \
1033 $(foreach t
, $(TARGET_DIRS
), \
1034 printf
" %-30s - Build for %s\\n" $(patsubst %,subdir-
%,$(t
)) $(t
);) \
1036 @echo
'Cleaning targets:'
1037 @echo
' clean - Remove most generated files but keep the config'
1039 @echo
' clean-coverage - Remove coverage files'
1041 @echo
' distclean - Remove all generated files'
1042 @echo
' dist - Build a distributable tarball'
1044 @echo
'Test targets:'
1045 @echo
' check - Run all tests (check-help for details)'
1046 @echo
' docker - Help about targets running tests inside Docker containers'
1047 @echo
' vm-test - Help about targets running tests inside VM'
1049 @echo
'Documentation targets:'
1050 @echo
' html info pdf txt'
1051 @echo
' - Build documentation in specified format'
1053 @echo
' coverage-report - Create code coverage report'
1057 @echo
'Windows targets:'
1058 @echo
' installer - Build NSIS-based installer for QEMU'
1059 ifdef QEMU_GA_MSI_ENABLED
1060 @echo
' msi - Build MSI-based installer for qemu-ga'
1064 @echo
' $(MAKE) [targets] (quiet build, default)'
1065 @echo
' $(MAKE) V=1 [targets] (verbose build)'