Makefile 42.6 KB
Newer Older
1 2
# Makefile for QEMU.

3 4 5 6
ifneq ($(words $(subst :, ,$(CURDIR))), 1)
  $(error main directory cannot contain spaces nor colons)
endif

S
Stefan Weil 已提交
7 8
# Always point to the root of the build tree (needs GNU make).
BUILD_DIR=$(CURDIR)
9

F
Fam Zheng 已提交
10 11 12
# Before including a proper config-host.mak, assume we are in the source tree
SRC_PATH=.

13 14
UNCHECKED_GOALS := %clean TAGS cscope ctags dist \
    html info pdf txt \
15
    help check-help print-% \
16
    docker docker-% vm-help vm-test vm-build-%
F
Fam Zheng 已提交
17

18 19 20
print-%:
	@echo '$*=$($*)'

21
# All following code might depend on configuration variables
22
ifneq ($(wildcard config-host.mak),)
P
Paul Brook 已提交
23
# Put the all: rule here so that config-host.mak can contain dependencies.
S
Stefan Weil 已提交
24
all:
P
pbrook 已提交
25
include config-host.mak
26

27 28 29 30
git-submodule-update:

.PHONY: git-submodule-update

31 32 33 34 35
git_module_status := $(shell \
  cd '$(SRC_PATH)' && \
  GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
  echo $$?; \
)
36 37

ifeq (1,$(git_module_status))
38 39 40 41 42 43 44 45 46 47
ifeq (no,$(GIT_UPDATE))
git-submodule-update:
	$(call quiet-command, \
            echo && \
            echo "GIT submodule checkout is out of date. Please run" && \
            echo "  scripts/git-submodule.sh update $(GIT_SUBMODULES)" && \
            echo "from the source directory checkout $(SRC_PATH)" && \
            echo && \
            exit 1)
else
48 49
git-submodule-update:
	$(call quiet-command, \
50
          (cd $(SRC_PATH) && GIT="$(GIT)" ./scripts/git-submodule.sh update $(GIT_SUBMODULES)), \
51 52 53 54
          "GIT","$(GIT_SUBMODULES)")
endif
endif

55
.git-submodule-status: git-submodule-update config-host.mak
56

57 58 59 60 61 62
# Check that we're not trying to do an out-of-tree build from
# a tree that's been used for an in-tree build.
ifneq ($(realpath $(SRC_PATH)),$(realpath .))
ifneq ($(wildcard $(SRC_PATH)/config-host.mak),)
$(error This is an out of tree build but your source tree ($(SRC_PATH)) \
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)
64 65 66
endif
endif

67 68
CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
69
CONFIG_XEN := $(CONFIG_XEN_BACKEND)
70 71 72 73
CONFIG_ALL=y
-include config-all-devices.mak
-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
	@./config.status
77 78
else
config-host.mak:
F
Fam Zheng 已提交
79
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
80 81 82
	@echo "Please call configure before running make!"
	@exit 1
endif
83
endif
B
bellard 已提交
84

F
Fam Zheng 已提交
85 86
include $(SRC_PATH)/rules.mak

87
# lor is defined in rules.mak
88 89
CONFIG_BLOCK := $(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS))

90 91 92 93 94 95 96 97 98 99 100 101 102 103
# Create QEMU_PKGVERSION and FULL_VERSION strings
# If PKGVERSION is set, use that; otherwise get version and -dirty status from git
QEMU_PKGVERSION := $(if $(PKGVERSION),$(PKGVERSION),$(shell \
  cd $(SRC_PATH); \
  if test -e .git; then \
    git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
    if ! git diff-index --quiet HEAD &>/dev/null; then \
      echo "-dirty"; \
    fi; \
  fi))

# Either "version (pkgversion)", or just "version" if pkgversion not set
FULL_VERSION := $(if $(QEMU_PKGVERSION),$(VERSION) ($(QEMU_PKGVERSION)),$(VERSION))

104
generated-files-y = qemu-version.h config-host.h qemu-options.def
E
Eric Blake 已提交
105 106 107 108 109 110 111 112 113 114 115 116

GENERATED_QAPI_FILES = qapi/qapi-builtin-types.h qapi/qapi-builtin-types.c
GENERATED_QAPI_FILES += qapi/qapi-types.h qapi/qapi-types.c
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-types-%.h)
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-types-%.c)
GENERATED_QAPI_FILES += qapi/qapi-builtin-visit.h qapi/qapi-builtin-visit.c
GENERATED_QAPI_FILES += qapi/qapi-visit.h qapi/qapi-visit.c
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-visit-%.h)
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-visit-%.c)
GENERATED_QAPI_FILES += qapi/qapi-commands.h qapi/qapi-commands.c
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-commands-%.h)
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-commands-%.c)
117
GENERATED_QAPI_FILES += qapi/qapi-emit-events.h qapi/qapi-emit-events.c
E
Eric Blake 已提交
118 119 120 121 122 123
GENERATED_QAPI_FILES += qapi/qapi-events.h qapi/qapi-events.c
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-events-%.h)
GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-events-%.c)
GENERATED_QAPI_FILES += qapi/qapi-introspect.c qapi/qapi-introspect.h
GENERATED_QAPI_FILES += qapi/qapi-doc.texi

124
generated-files-y += $(GENERATED_QAPI_FILES)
125

126
generated-files-y += trace/generated-tcg-tracers.h
127

128 129 130
generated-files-y += trace/generated-helpers-wrappers.h
generated-files-y += trace/generated-helpers.h
generated-files-y += trace/generated-helpers.c
131

132 133
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.h
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.c
134

135
generated-files-y += module_block.h
136

137 138 139 140 141 142 143 144 145 146 147
TRACE_HEADERS = trace-root.h $(trace-events-subdirs:%=%/trace.h)
TRACE_SOURCES = trace-root.c $(trace-events-subdirs:%=%/trace.c)
TRACE_DTRACE =
ifdef CONFIG_TRACE_DTRACE
TRACE_HEADERS += trace-dtrace-root.h $(trace-events-subdirs:%=%/trace-dtrace.h)
TRACE_DTRACE += trace-dtrace-root.dtrace $(trace-events-subdirs:%=%/trace-dtrace.dtrace)
endif
ifdef CONFIG_TRACE_UST
TRACE_HEADERS += trace-ust-root.h $(trace-events-subdirs:%=%/trace-ust.h)
endif

148 149 150 151
generated-files-y += $(TRACE_HEADERS)
generated-files-y += $(TRACE_SOURCES)
generated-files-y += $(BUILD_DIR)/trace-events-all
generated-files-y += .git-submodule-status
152 153 154

trace-group-name = $(shell dirname $1 | sed -e 's/[^a-zA-Z0-9]/_/g')

155 156 157
tracetool-y = $(SRC_PATH)/scripts/tracetool.py
tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")

158 159
%/trace.h: %/trace.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
160
%/trace.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
161 162 163 164 165 166 167 168
	$(call quiet-command,$(TRACETOOL) \
		--group=$(call trace-group-name,$@) \
		--format=h \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

%/trace.c: %/trace.c-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
169
%/trace.c-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
170 171 172 173 174 175 176 177
	$(call quiet-command,$(TRACETOOL) \
		--group=$(call trace-group-name,$@) \
		--format=c \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

%/trace-ust.h: %/trace-ust.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
178
%/trace-ust.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
	$(call quiet-command,$(TRACETOOL) \
		--group=$(call trace-group-name,$@) \
		--format=ust-events-h \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

%/trace-dtrace.dtrace: %/trace-dtrace.dtrace-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
%/trace-dtrace.dtrace-timestamp: $(SRC_PATH)/%/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
	$(call quiet-command,$(TRACETOOL) \
		--group=$(call trace-group-name,$@) \
		--format=d \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

%/trace-dtrace.h: %/trace-dtrace.dtrace $(tracetool-y)
	$(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")

%/trace-dtrace.o: %/trace-dtrace.dtrace $(tracetool-y)


trace-root.h: trace-root.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
202
trace-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
203 204 205 206 207 208 209 210
	$(call quiet-command,$(TRACETOOL) \
		--group=root \
		--format=h \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

trace-root.c: trace-root.c-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
211
trace-root.c-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
212 213 214 215 216 217 218 219
	$(call quiet-command,$(TRACETOOL) \
		--group=root \
		--format=c \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

trace-ust-root.h: trace-ust-root.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
220
trace-ust-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
221 222 223 224 225 226 227 228
	$(call quiet-command,$(TRACETOOL) \
		--group=root \
		--format=ust-events-h \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

trace-ust-all.h: trace-ust-all.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
229
trace-ust-all.h-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
230 231 232 233 234 235 236 237
	$(call quiet-command,$(TRACETOOL) \
		--group=all \
		--format=ust-events-h \
		--backends=$(TRACE_BACKENDS) \
		$(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")

trace-ust-all.c: trace-ust-all.c-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
238
trace-ust-all.c-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	$(call quiet-command,$(TRACETOOL) \
		--group=all \
		--format=ust-events-c \
		--backends=$(TRACE_BACKENDS) \
		$(trace-events-files) > $@,"GEN","$(@:%-timestamp=%)")

trace-dtrace-root.dtrace: trace-dtrace-root.dtrace-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
trace-dtrace-root.dtrace-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak $(tracetool-y)
	$(call quiet-command,$(TRACETOOL) \
		--group=root \
		--format=d \
		--backends=$(TRACE_BACKENDS) \
		$< > $@,"GEN","$(@:%-timestamp=%)")

trace-dtrace-root.h: trace-dtrace-root.dtrace
	$(call quiet-command,dtrace -o $@ -h -s $<, "GEN","$@")

trace-dtrace-root.o: trace-dtrace-root.dtrace

259 260 261 262
KEYCODEMAP_GEN = $(SRC_PATH)/ui/keycodemapdb/tools/keymap-gen
KEYCODEMAP_CSV = $(SRC_PATH)/ui/keycodemapdb/data/keymaps.csv

KEYCODEMAP_FILES = \
263
		 ui/input-keymap-atset1-to-qcode.c \
264
		 ui/input-keymap-linux-to-qcode.c \
265 266 267
		 ui/input-keymap-qcode-to-atset1.c \
		 ui/input-keymap-qcode-to-atset2.c \
		 ui/input-keymap-qcode-to-atset3.c \
268
		 ui/input-keymap-qcode-to-linux.c \
269
		 ui/input-keymap-qcode-to-qnum.c \
270
		 ui/input-keymap-qcode-to-sun.c \
271
		 ui/input-keymap-qnum-to-qcode.c \
272
		 ui/input-keymap-usb-to-qcode.c \
273 274 275 276 277 278
		 ui/input-keymap-win32-to-qcode.c \
		 ui/input-keymap-x11-to-qcode.c \
		 ui/input-keymap-xorgevdev-to-qcode.c \
		 ui/input-keymap-xorgkbd-to-qcode.c \
		 ui/input-keymap-xorgxquartz-to-qcode.c \
		 ui/input-keymap-xorgxwin-to-qcode.c \
279
		 ui/input-keymap-osx-to-qcode.c \
280 281
		 $(NULL)

282
generated-files-$(CONFIG_SOFTMMU) += $(KEYCODEMAP_FILES)
283 284 285

ui/input-keymap-%.c: $(KEYCODEMAP_GEN) $(KEYCODEMAP_CSV) $(SRC_PATH)/ui/Makefile.objs
	$(call quiet-command,\
J
Jan Beulich 已提交
286
	    stem=$* && src=$${stem%-to-*} dst=$${stem#*-to-} && \
287 288 289 290 291 292 293 294 295 296
	    test -e $(KEYCODEMAP_GEN) && \
	    $(PYTHON) $(KEYCODEMAP_GEN) \
	          --lang glib2 \
	          --varname qemu_input_map_$${src}_to_$${dst} \
	          code-map $(KEYCODEMAP_CSV) $${src} $${dst} \
	        > $@ || rm -f $@, "GEN", "$@")

$(KEYCODEMAP_GEN): .git-submodule-status
$(KEYCODEMAP_CSV): .git-submodule-status

297 298 299 300
edk2-decompressed = $(basename $(wildcard pc-bios/edk2-*.fd.bz2))
pc-bios/edk2-%.fd: pc-bios/edk2-%.fd.bz2
	$(call quiet-command,bzip2 -d -c $< > $@,"BUNZIP2",$<)

301 302 303 304 305
# Don't try to regenerate Makefile or configure
# We don't generate any of them
Makefile: ;
configure: ;

306
.PHONY: all clean cscope distclean html info install install-doc \
307
	pdf txt recurse-all dist msi FORCE
308

P
Paolo Bonzini 已提交
309
$(call set-vpath, $(SRC_PATH))
P
pbrook 已提交
310

J
Juan Quintela 已提交
311
LIBS+=-lz $(LIBS_TOOLS)
312

M
Marc-André Lureau 已提交
313 314 315
vhost-user-json-y =
HELPERS-y =

316
HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = qemu-bridge-helper$(EXESUF)
317

M
Marc-André Lureau 已提交
318 319 320 321 322 323 324 325 326
ifdef CONFIG_LINUX
ifdef CONFIG_VIRGL
ifdef CONFIG_GBM
HELPERS-y += vhost-user-gpu$(EXESUF)
vhost-user-json-y += contrib/vhost-user-gpu/50-qemu-gpu.json
endif
endif
endif

327 328 329 330 331 332 333 334 335 336 337
# Sphinx does not allow building manuals into the same directory as
# the source files, so if we're doing an in-tree QEMU build we must
# build the manuals into a subdirectory (and then install them from
# there for 'make install'). For an out-of-tree build we can just
# use the docs/ subdirectory in the build tree as normal.
ifeq ($(realpath $(SRC_PATH)),$(realpath .))
MANUAL_BUILDDIR := docs/built
else
MANUAL_BUILDDIR := docs
endif

338
ifdef BUILD_DOCS
339
DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 $(MANUAL_BUILDDIR)/interop/qemu-ga.8
340 341
DOCS+=docs/interop/qemu-qmp-ref.html docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7
DOCS+=docs/interop/qemu-ga-ref.html docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7
342
DOCS+=docs/qemu-block-drivers.7
343
DOCS+=docs/qemu-cpu-models.7
344
ifdef CONFIG_VIRTFS
345
DOCS+=fsdev/virtfs-proxy-helper.1
346
endif
347 348 349
ifdef CONFIG_TRACE_SYSTEMTAP
DOCS+=scripts/qemu-trace-stap.1
endif
350 351 352
else
DOCS=
endif
B
bellard 已提交
353

354
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet) BUILD_DIR=$(BUILD_DIR)
P
Paolo Bonzini 已提交
355 356
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(filter %-softmmu, $(TARGET_DIRS)))
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %.d, $(SUBDIR_DEVICES_MAK))
357

358
ifeq ($(SUBDIR_DEVICES_MAK),)
359
config-all-devices.mak: config-host.mak
360
	$(call quiet-command,echo '# no devices' > $@,"GEN","$@")
361
else
362
config-all-devices.mak: $(SUBDIR_DEVICES_MAK) config-host.mak
363 364 365
	$(call quiet-command, sed -n \
             's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
             $(SUBDIR_DEVICES_MAK) | sort -u > $@, \
366
             "GEN","$@")
367
endif
368

P
Paul Brook 已提交
369 370
-include $(SUBDIR_DEVICES_MAK_DEP)

P
Paolo Bonzini 已提交
371 372
# This has to be kept in sync with Kconfig.host.
MINIKCONF_ARGS = \
373
    $(CONFIG_MINIKCONF_MODE) \
374
    $@ $*/config-devices.mak.d $< $(MINIKCONF_INPUTS) \
P
Paolo Bonzini 已提交
375 376 377 378 379 380 381 382 383
    CONFIG_KVM=$(CONFIG_KVM) \
    CONFIG_SPICE=$(CONFIG_SPICE) \
    CONFIG_IVSHMEM=$(CONFIG_IVSHMEM) \
    CONFIG_TPM=$(CONFIG_TPM) \
    CONFIG_XEN=$(CONFIG_XEN) \
    CONFIG_OPENGL=$(CONFIG_OPENGL) \
    CONFIG_X11=$(CONFIG_X11) \
    CONFIG_VHOST_USER=$(CONFIG_VHOST_USER) \
    CONFIG_VIRTFS=$(CONFIG_VIRTFS) \
384 385
    CONFIG_LINUX=$(CONFIG_LINUX) \
    CONFIG_PVRDMA=$(CONFIG_PVRDMA)
P
Paolo Bonzini 已提交
386 387 388 389 390 391

MINIKCONF_INPUTS = $(SRC_PATH)/Kconfig.host $(SRC_PATH)/hw/Kconfig
MINIKCONF = $(PYTHON) $(SRC_PATH)/scripts/minikconf.py \

$(SUBDIR_DEVICES_MAK): %/config-devices.mak: default-configs/%.mak $(MINIKCONF_INPUTS) $(BUILD_DIR)/config-host.mak
	$(call quiet-command, $(MINIKCONF) $(MINIKCONF_ARGS) > $@.tmp, "GEN", "$@.tmp")
392
	$(call quiet-command, if test -f $@; then \
393
	  if cmp -s $@.old $@; then \
P
Paul Brook 已提交
394 395
	    mv $@.tmp $@; \
	    cp -p $@ $@.old; \
396 397 398 399 400 401
	  else \
	    if test -f $@.old; then \
	      echo "WARNING: $@ (user modified) out of date.";\
	    else \
	      echo "WARNING: $@ out of date.";\
	    fi; \
402
	    echo "Run \"$(MAKE) defconfig\" to regenerate."; \
403 404
	    rm $@.tmp; \
	  fi; \
405
	 else \
406 407
	  mv $@.tmp $@; \
	  cp -p $@ $@.old; \
408
	 fi,"GEN","$@");
409 410 411 412

defconfig:
	rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)

413 414
ifneq ($(wildcard config-host.mak),)
include $(SRC_PATH)/Makefile.objs
415 416 417 418
endif

dummy := $(call unnest-vars,, \
                stub-obj-y \
419
                authz-obj-y \
M
Marc-André Lureau 已提交
420
                chardev-obj-y \
421 422
                util-obj-y \
                qga-obj-y \
V
Viktor Prutyanov 已提交
423
                elf2dmp-obj-y \
424 425
                ivshmem-client-obj-y \
                ivshmem-server-obj-y \
426
                rdmacm-mux-obj-y \
M
Marc-André Lureau 已提交
427
                libvhost-user-obj-y \
428
                vhost-user-scsi-obj-y \
429
                vhost-user-blk-obj-y \
430
                vhost-user-input-obj-y \
M
Marc-André Lureau 已提交
431
                vhost-user-gpu-obj-y \
432
                qga-vss-dll-obj-y \
433
                block-obj-y \
434
                block-obj-m \
435
                crypto-obj-y \
436
                crypto-user-obj-y \
437
                qom-obj-y \
438
                io-obj-y \
439
                common-obj-y \
440
                common-obj-m \
G
Gerd Hoffmann 已提交
441 442 443 444
                ui-obj-y \
                ui-obj-m \
                audio-obj-y \
                audio-obj-m \
445
                trace-obj-y)
446

447
include $(SRC_PATH)/tests/Makefile.include
448

M
Marc-André Lureau 已提交
449
all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) $(TOOLS) $(HELPERS-y) recurse-all modules $(vhost-user-json-y)
P
pbrook 已提交
450

451 452
qemu-version.h: FORCE
	$(call quiet-command, \
453 454
                (printf '#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
		printf '#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
455
		) > $@.tmp)
456 457 458 459 460
	$(call quiet-command, if ! cmp -s $@ $@.tmp; then \
	  mv $@.tmp $@; \
	 else \
	  rm $@.tmp; \
	 fi)
461

462 463
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak
464
qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
465
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
466

467
TARGET_DIRS_RULES := $(foreach t, all clean install, $(addsuffix /$(t), $(TARGET_DIRS)))
468

469 470 471 472 473 474 475 476
SOFTMMU_ALL_RULES=$(filter %-softmmu/all, $(TARGET_DIRS_RULES))
$(SOFTMMU_ALL_RULES): $(authz-obj-y)
$(SOFTMMU_ALL_RULES): $(block-obj-y)
$(SOFTMMU_ALL_RULES): $(chardev-obj-y)
$(SOFTMMU_ALL_RULES): $(crypto-obj-y)
$(SOFTMMU_ALL_RULES): $(io-obj-y)
$(SOFTMMU_ALL_RULES): config-all-devices.mak
$(SOFTMMU_ALL_RULES): $(edk2-decompressed)
477

478 479 480 481 482
.PHONY: $(TARGET_DIRS_RULES)
# The $(TARGET_DIRS_RULES) are of the form SUBDIR/GOAL, so that
# $(dir $@) yields the sub-directory, and $(notdir $@) yields the sub-goal
$(TARGET_DIRS_RULES):
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" $(notdir $@),)
P
pbrook 已提交
483

484
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
485 486
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
487

488 489
.PHONY: dtc/all
dtc/all: .git-submodule-status dtc/libfdt dtc/tests
490
	$(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CPPFLAGS="$(DTC_CPPFLAGS)" CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
491

492
dtc/%: .git-submodule-status
493
	@mkdir -p $@
494

495 496 497 498 499 500 501 502 503 504 505 506
# Overriding CFLAGS causes us to lose defines added in the sub-makefile.
# Not overriding CFLAGS leads to mis-matches between compilation modes.
# Therefore we replicate some of the logic in the sub-makefile.
# Remove all the extra -Warning flags that QEMU uses that Capstone doesn't;
# no need to annoy QEMU developers with such things.
CAP_CFLAGS = $(patsubst -W%,,$(CFLAGS) $(QEMU_CFLAGS))
CAP_CFLAGS += -DCAPSTONE_USE_SYS_DYN_MEM
CAP_CFLAGS += -DCAPSTONE_HAS_ARM
CAP_CFLAGS += -DCAPSTONE_HAS_ARM64
CAP_CFLAGS += -DCAPSTONE_HAS_POWERPC
CAP_CFLAGS += -DCAPSTONE_HAS_X86

507 508
.PHONY: capstone/all
capstone/all: .git-submodule-status
509
	$(call quiet-command,$(MAKE) -C $(SRC_PATH)/capstone CAPSTONE_SHARED=no BUILDDIR="$(BUILD_DIR)/capstone" CC="$(CC)" AR="$(AR)" LD="$(LD)" RANLIB="$(RANLIB)" CFLAGS="$(CAP_CFLAGS)" $(SUBDIR_MAKEFLAGS) $(BUILD_DIR)/capstone/$(LIBCAPSTONE))
510

511 512
.PHONY: slirp/all
slirp/all: .git-submodule-status
513 514 515 516 517
	$(call quiet-command,$(MAKE) -C $(SRC_PATH)/slirp		\
		BUILD_DIR="$(BUILD_DIR)/slirp" 			\
		PKG_CONFIG="$(PKG_CONFIG)" 				\
		CC="$(CC)" AR="$(AR)" 	LD="$(LD)" RANLIB="$(RANLIB)"	\
		CFLAGS="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS="$(LDFLAGS)")
518

519 520 521 522 523 524
# Compatibility gunk to keep make working across the rename of targets
# for recursion, to be removed some time after 4.1.
subdir-dtc: dtc/all
subdir-capstone: capstone/all
subdir-slirp: slirp/all

525
$(filter %/all, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
526
	$(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
527

528
ROM_DIRS = $(addprefix pc-bios/, $(ROMS))
529
ROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS)))
530
# Only keep -O and -g cflags
531 532 533
.PHONY: $(ROM_DIRS_RULES)
$(ROM_DIRS_RULES):
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" CFLAGS="$(filter -O% -g%,$(CFLAGS))" $(notdir $@),)
P
Paul Brook 已提交
534

535
.PHONY: recurse-all recurse-clean recurse-install
536 537 538
recurse-all: $(addsuffix /all, $(TARGET_DIRS) $(ROM_DIRS))
recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
recurse-install: $(addsuffix /install, $(TARGET_DIRS))
539
$(addsuffix /install, $(TARGET_DIRS)): all
B
bellard 已提交
540

541
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
542
	$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
543

544
Makefile: $(version-obj-y)
545 546

######################################################################
547
# Build libraries
548

P
Paolo Bonzini 已提交
549
libqemuutil.a: $(util-obj-y) $(trace-obj-y) $(stub-obj-y)
550
libvhost-user.a: $(libvhost-user-obj-y) $(util-obj-y) $(stub-obj-y)
551

A
Alon Levy 已提交
552
######################################################################
B
bellard 已提交
553

P
Paolo Bonzini 已提交
554
COMMON_LDADDS = libqemuutil.a
555

J
Juan Quintela 已提交
556
qemu-img.o: qemu-img-cmds.h
557

558 559 560
qemu-img$(EXESUF): qemu-img.o $(authz-obj-y) $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
qemu-nbd$(EXESUF): qemu-nbd.o $(authz-obj-y) $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
qemu-io$(EXESUF): qemu-io.o $(authz-obj-y) $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) $(COMMON_LDADDS)
561

562
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
563

G
Gerd Hoffmann 已提交
564 565
qemu-keymap$(EXESUF): qemu-keymap.o ui/input-keymap.o $(COMMON_LDADDS)

566 567
qemu-edid$(EXESUF): qemu-edid.o hw/display/edid-generate.o $(COMMON_LDADDS)

568
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
569 570
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap

571
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)
572 573 574
ifdef CONFIG_MPATH
scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
endif
P
Paolo Bonzini 已提交
575

576
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
577
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
578

579
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
580
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
581

G
Gerd Hoffmann 已提交
582 583 584
qemu-keymap$(EXESUF): LIBS += $(XKBCOMMON_LIBS)
qemu-keymap$(EXESUF): QEMU_CFLAGS += $(XKBCOMMON_CFLAGS)

585 586 587 588 589 590 591 592 593 594 595
qapi-py = $(SRC_PATH)/scripts/qapi/commands.py \
$(SRC_PATH)/scripts/qapi/events.py \
$(SRC_PATH)/scripts/qapi/introspect.py \
$(SRC_PATH)/scripts/qapi/types.py \
$(SRC_PATH)/scripts/qapi/visit.py \
$(SRC_PATH)/scripts/qapi/common.py \
$(SRC_PATH)/scripts/qapi/doc.py \
$(SRC_PATH)/scripts/qapi-gen.py

qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h \
qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h \
596
qga/qapi-generated/qga-qapi-commands.h qga/qapi-generated/qga-qapi-commands.c \
597 598 599
qga/qapi-generated/qga-qapi-doc.texi: \
qga/qapi-generated/qapi-gen-timestamp ;
qga/qapi-generated/qapi-gen-timestamp: $(SRC_PATH)/qga/qapi-schema.json $(qapi-py)
M
Matthias Maier 已提交
600
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
601 602 603
		-o qga/qapi-generated -p "qga-" $<, \
		"GEN","$(@:%-timestamp=%)")
	@>$@
604

E
Eric Blake 已提交
605 606 607 608
qapi-modules = $(SRC_PATH)/qapi/qapi-schema.json \
               $(QAPI_MODULES:%=$(SRC_PATH)/qapi/%.json)

$(GENERATED_QAPI_FILES): qapi-gen-timestamp ;
609
qapi-gen-timestamp: $(qapi-modules) $(qapi-py)
M
Matthias Maier 已提交
610
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
611
		-o "qapi" -b $<, \
612 613
		"GEN","$(@:%-timestamp=%)")
	@>$@
614

615
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h)
616
$(qga-obj-y): $(QGALIB_GEN)
617

618
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
619
	$(call LINK, $^)
M
Michael Roth 已提交
620

621 622 623
ifdef QEMU_GA_MSI_ENABLED
QEMU_GA_MSI=qemu-ga-$(ARCH).msi

624
msi: $(QEMU_GA_MSI)
625

626
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
627 628 629

$(QEMU_GA_MSI): config-host.mak

630 631
$(QEMU_GA_MSI):  $(SRC_PATH)/qga/installer/qemu-ga.wxs
	$(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)" \
632
	wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
633 634
else
msi:
635
	@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
636 637
endif

638 639 640 641 642
ifneq ($(EXESUF),)
.PHONY: qemu-ga
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
endif

643
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
V
Viktor Prutyanov 已提交
644 645
	$(call LINK, $^)

646
ifdef CONFIG_IVSHMEM
647
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
648
	$(call LINK, $^)
649
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
650
	$(call LINK, $^)
651
endif
652
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) libvhost-user.a
653
	$(call LINK, $^)
654 655
vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
	$(call LINK, $^)
656 657

rdmacm-mux$(EXESUF): LIBS += "-libumad"
658 659
rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
	$(call LINK, $^)
660

M
Marc-André Lureau 已提交
661 662 663
vhost-user-gpu$(EXESUF): $(vhost-user-gpu-obj-y) $(libvhost-user-obj-y) libqemuutil.a libqemustub.a
	$(call LINK, $^)

664 665 666 667 668 669 670 671 672 673
ifdef CONFIG_VHOST_USER_INPUT
ifdef CONFIG_LINUX
vhost-user-input$(EXESUF): $(vhost-user-input-obj-y) libvhost-user.a libqemuutil.a
	$(call LINK, $^)

# build by default, do not install
all: vhost-user-input$(EXESUF)
endif
endif

674 675 676
module_block.h: $(SRC_PATH)/scripts/modules/module_block.py config-host.mak
	$(call quiet-command,$(PYTHON) $< $@ \
	$(addprefix $(SRC_PATH)/,$(patsubst %.mo,%.c,$(block-obj-m))), \
677
	"GEN","$@")
678

679 680 681 682 683 684 685 686
ifdef CONFIG_GCOV
.PHONY: clean-coverage
clean-coverage:
	$(call quiet-command, \
		find . \( -name '*.gcda' -o -name '*.gcov' \) -type f -exec rm {} +, \
		"CLEAN", "coverage files")
endif

687
clean: recurse-clean
688
# avoid old build problems by removing potentially incorrect old files
689
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
690
	rm -f qemu-options.def
691
	rm -f *.msi
692 693 694 695 696
	find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f \
		! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
		! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
		! -path ./roms/edk2/BaseTools/Source/Python/UPT/Dll/sqlite3.dll \
		-exec rm {} +
697
	rm -f $(edk2-decompressed)
P
Paolo Bonzini 已提交
698
	rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) TAGS cscope.* *.pod *~ */*~
P
Paolo Bonzini 已提交
699
	rm -f fsdev/*.pod scsi/*.pod
B
Blue Swirl 已提交
700
	rm -f qemu-img-cmds.h
701
	rm -f ui/shader/*-vert.h ui/shader/*-frag.h
702
	@# May not be present in generated-files-y
703 704
	rm -f trace/generated-tracers-dtrace.dtrace*
	rm -f trace/generated-tracers-dtrace.h*
705
	rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
706
	rm -f qapi-gen-timestamp
707
	rm -rf qga/qapi-generated
708
	rm -f config-all-devices.mak
709

710 711 712 713 714 715 716
VERSION ?= $(shell cat VERSION)

dist: qemu-$(VERSION).tar.bz2

qemu-%.tar.bz2:
	$(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"

717
define clean-manual =
718 719
rm -rf $(MANUAL_BUILDDIR)/$1/_static
rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
720 721
endef

B
bellard 已提交
722
distclean: clean
723
	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
724
	rm -f tests/tcg/config-*.mak
725
	rm -f config-all-devices.mak config-all-disas.mak config.status
726
	rm -f $(SUBDIR_DEVICES_MAK)
727
	rm -f po/*.mo tests/qemu-iotests/common.env
M
Magnus Damm 已提交
728
	rm -f roms/seabios/config.mak roms/vgabios/config.mak
729
	rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps
B
Brad Hards 已提交
730 731
	rm -f qemu-doc.fn qemu-doc.fns qemu-doc.info qemu-doc.ky qemu-doc.kys
	rm -f qemu-doc.log qemu-doc.pdf qemu-doc.pg qemu-doc.toc qemu-doc.tp
732
	rm -f qemu-doc.vr qemu-doc.txt
733
	rm -f config.log
734
	rm -f linux-headers/asm
735 736 737 738 739 740
	rm -f docs/version.texi
	rm -f docs/interop/qemu-ga-qapi.texi docs/interop/qemu-qmp-qapi.texi
	rm -f docs/interop/qemu-qmp-ref.7 docs/interop/qemu-ga-ref.7
	rm -f docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
	rm -f docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
	rm -f docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html
741
	rm -f docs/qemu-block-drivers.7
742
	rm -f docs/qemu-cpu-models.7
P
Peter Maydell 已提交
743
	rm -rf .doctrees
744 745
	$(call clean-manual,devel)
	$(call clean-manual,interop)
746
	$(call clean-manual,specs)
747
	for d in $(TARGET_DIRS); do \
B
bellard 已提交
748
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
749
        done
750
	rm -Rf .sdk
E
Ed Maste 已提交
751
	if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
B
bellard 已提交
752

753
KEYMAPS=da     en-gb  et  fr     fr-ch  is  lt  no  pt-br  sv \
B
bellard 已提交
754
ar      de     en-us  fi  fr-be  hr     it  lv  nl         pl  ru     th \
G
Gerd Hoffmann 已提交
755
de-ch  es     fo  fr-ca  hu     ja  mk  pt  sl     tr \
J
Jan Krupa 已提交
756
bepo    cz
B
bellard 已提交
757

T
ths 已提交
758
ifdef INSTALL_BLOBS
759
BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
760
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
761
vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
762
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
763 764
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
765 766
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
G
Gerd Hoffmann 已提交
767
efi-e1000e.rom efi-vmxnet3.rom \
768
qemu-nsis.bmp \
B
BALATON Zoltan 已提交
769
bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
770
multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
771
s390-ccw.img s390-netboot.img \
772
slof.bin skiboot.lid \
773
palcode-clipper \
774
u-boot.e500 u-boot-sam460-20100605.bin \
775
qemu_vga.ndrv \
776
edk2-licenses.txt \
A
Alistair Francis 已提交
777 778 779 780
hppa-firmware.img \
opensbi-riscv32-virt-fw_jump.bin \
opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin

781 782 783

DESCS=50-edk2-i386-secure.json 50-edk2-x86_64-secure.json \
60-edk2-aarch64.json 60-edk2-arm.json 60-edk2-i386.json 60-edk2-x86_64.json
T
ths 已提交
784 785
else
BLOBS=
786
DESCS=
T
ths 已提交
787 788
endif

789
# Note that we manually filter-out the non-Sphinx documentation which
790 791
# is currently built into the docs/interop directory in the build tree,
# and also any sphinx-built manpages.
792
define install-manual =
793
for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
794
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
795 796 797 798 799 800 801
endef

# Note that we deliberately do not install the "devel" manual: it is
# for QEMU developers, and not interesting to our users.
.PHONY: install-sphinxdocs
install-sphinxdocs: sphinxdocs
	$(call install-manual,interop)
802
	$(call install-manual,specs)
803 804

install-doc: $(DOCS) install-sphinxdocs
805
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
806
	$(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
807
	$(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
808 809
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
810
ifdef CONFIG_POSIX
811
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
812
	$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
813
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
814
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
815
	$(INSTALL_DATA) docs/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
816
	$(INSTALL_DATA) docs/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
817
ifeq ($(CONFIG_TOOLS),y)
818
	$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
819 820
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
821
endif
822 823 824
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_DATA) scripts/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
endif
M
Marc-André Lureau 已提交
825
ifneq (,$(findstring qemu-ga,$(TOOLS)))
826
	$(INSTALL_DATA) $(MANUAL_BUILDDIR)/interop/qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
827 828 829
	$(INSTALL_DATA) docs/interop/qemu-ga-ref.html "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-ga-ref.txt "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-ga-ref.7 "$(DESTDIR)$(mandir)/man7"
M
Marc-André Lureau 已提交
830
endif
831
endif
832 833 834 835
ifdef CONFIG_VIRTFS
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
endif
836 837 838 839

install-datadir:
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"

840 841 842 843 844 845 846
install-localstatedir:
ifdef CONFIG_POSIX
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
endif
endif

847
ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
848

849
install: all $(if $(BUILD_DOCS),install-doc) install-datadir install-localstatedir \
850 851
	$(if $(INSTALL_BLOBS),$(edk2-decompressed)) \
	recurse-install
852
ifneq ($(TOOLS),)
P
Paolo Bonzini 已提交
853
	$(call install-prog,$(TOOLS),$(DESTDIR)$(bindir))
854
endif
855 856
ifneq ($(CONFIG_MODULES),)
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
857 858
	for s in $(modules-m:.mo=$(DSOSUF)); do \
		t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
859
		$(INSTALL_LIB) $$s "$$t"; \
860
		test -z "$(STRIP)" || $(STRIP) "$$t"; \
861 862
	done
endif
863
ifneq ($(HELPERS-y),)
864
	$(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
865
endif
M
Marc-André Lureau 已提交
866 867 868 869 870 871
ifneq ($(vhost-user-json-y),)
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/vhost-user/"
	for x in $(vhost-user-json-y); do \
		$(INSTALL_DATA) $$x "$(DESTDIR)$(qemu_datadir)/vhost-user/"; \
	done
endif
872 873 874
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_PROG) "scripts/qemu-trace-stap" $(DESTDIR)$(bindir)
endif
T
ths 已提交
875 876
ifneq ($(BLOBS),)
	set -e; for x in $(BLOBS); do \
877
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
P
pbrook 已提交
878
	done
879 880 881 882 883 884 885 886 887 888
endif
ifdef INSTALL_BLOBS
	set -e; for x in $(edk2-decompressed); do \
		$(INSTALL_DATA) $$x "$(DESTDIR)$(qemu_datadir)"; \
	done
endif
ifneq ($(DESCS),)
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/firmware"
	set -e; tmpf=$$(mktemp); trap 'rm -f -- "$$tmpf"' EXIT; \
	for x in $(DESCS); do \
889
		sed -e 's,@DATADIR@,$(qemu_datadir),' \
890 891 892 893
			"$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
		$(INSTALL_DATA) "$$tmpf" \
			"$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
	done
894
endif
895
	for s in $(ICON_SIZES); do \
896
		mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
897
		$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_$${s}.png \
898
			"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
899
	done; \
900
	mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
901
	$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
902 903
		"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
	mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
904
	$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
905 906
		"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
	mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
907
	$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
908
		"$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
909
ifdef CONFIG_GTK
910
	$(MAKE) -C po $@
T
ths 已提交
911
endif
912
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
913
	set -e; for x in $(KEYMAPS); do \
914
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
P
pbrook 已提交
915
	done
916
	$(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all"
B
bellard 已提交
917

F
Fam Zheng 已提交
918 919
.PHONY: ctags
ctags:
920
	rm -f tags
F
Fam Zheng 已提交
921 922
	find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +

A
Alexandre Bique 已提交
923
.PHONY: TAGS
924
TAGS:
925
	rm -f TAGS
D
David Gibson 已提交
926
	find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
927

B
bellard 已提交
928
cscope:
F
Fam Zheng 已提交
929 930 931
	rm -f "$(SRC_PATH)"/cscope.*
	find "$(SRC_PATH)/" -name "*.[chsS]" -print | sed 's,^\./,,' > "$(SRC_PATH)/cscope.files"
	cscope -b -i"$(SRC_PATH)/cscope.files"
B
bellard 已提交
932

933 934 935 936 937
# opengl shader programs
ui/shader/%-vert.h: $(SRC_PATH)/ui/shader/%.vert $(SRC_PATH)/scripts/shaderinclude.pl
	@mkdir -p $(dir $@)
	$(call quiet-command,\
		perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
938
		"VERT","$@")
939 940 941 942 943

ui/shader/%-frag.h: $(SRC_PATH)/ui/shader/%.frag $(SRC_PATH)/scripts/shaderinclude.pl
	@mkdir -p $(dir $@)
	$(call quiet-command,\
		perl $(SRC_PATH)/scripts/shaderinclude.pl $< > $@,\
944
		"FRAG","$@")
945

946
ui/shader.o: $(SRC_PATH)/ui/shader.c \
G
Gerd Hoffmann 已提交
947 948 949
	ui/shader/texture-blit-vert.h \
	ui/shader/texture-blit-flip-vert.h \
	ui/shader/texture-blit-frag.h
950

B
bellard 已提交
951
# documentation
952
MAKEINFO=makeinfo
953 954
MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
955
TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
956
TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
957

958 959 960 961 962
docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
	$(call quiet-command,(\
		echo "@set VERSION $(VERSION)" && \
		echo "@set CONFDIR $(qemu_confdir)" \
	)> $@,"GEN","$@")
963

P
Paolo Bonzini 已提交
964
%.html: %.texi docs/version.texi
965 966
	$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
	--html $< -o $@,"GEN","$@")
B
bellard 已提交
967

P
Paolo Bonzini 已提交
968
%.info: %.texi docs/version.texi
969
	$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
B
bellard 已提交
970

P
Paolo Bonzini 已提交
971
%.txt: %.texi docs/version.texi
972 973 974
	$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
	--plaintext $< -o $@,"GEN","$@")

P
Paolo Bonzini 已提交
975
%.pdf: %.texi docs/version.texi
976
	$(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
977

978 979 980 981
# Sphinx builds all its documentation at once in one invocation
# and handles "don't rebuild things unless necessary" itself.
# The '.doctrees' files are cached information to speed this up.
.PHONY: sphinxdocs
982
sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html $(MANUAL_BUILDDIR)/interop/index.html $(MANUAL_BUILDDIR)/specs/index.html
983 984

# Canned command to build a single manual
985
# Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
986 987 988 989
# Note the use of different doctree for each (manual, builder) tuple;
# this works around Sphinx not handling parallel invocation on
# a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
build-manual = $(call quiet-command,CONFDIR="$(qemu_confdir)" sphinx-build $(if $(V),,-q) -W -n -b $2 -D version=$(VERSION) -D release="$(FULL_VERSION)" -d .doctrees/$1-$2 $(SRC_PATH)/docs/$1 $(MANUAL_BUILDDIR)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
990 991 992
# We assume all RST files in the manual's directory are used in it
manual-deps = $(wildcard $(SRC_PATH)/docs/$1/*.rst) $(SRC_PATH)/docs/$1/conf.py $(SRC_PATH)/docs/conf.py

993
$(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
994
	$(call build-manual,devel,html)
995

996
$(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
997
	$(call build-manual,interop,html)
998

999
$(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
1000 1001 1002 1003
	$(call build-manual,specs,html)

$(MANUAL_BUILDDIR)/interop/qemu-ga.8: $(call manual-deps,interop)
	$(call build-manual,interop,man)
1004

1005
qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
1006
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
B
bellard 已提交
1007

1008
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
1009
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
1010

1011
qemu-monitor-info.texi: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
1012
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
1013

1014
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
1015
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
1016

1017
docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
1018
	@cp -p $< $@
1019

1020 1021
docs/interop/qemu-ga-qapi.texi: qga/qapi-generated/qga-qapi-doc.texi
	@cp -p $< $@
1022

1023
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
1024
qemu.1: qemu-option-trace.texi
1025
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1026
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
1027
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
1028
docs/qemu-block-drivers.7: docs/qemu-block-drivers.texi
1029
docs/qemu-cpu-models.7: docs/qemu-cpu-models.texi
1030
scripts/qemu-trace-stap.1: scripts/qemu-trace-stap.texi
M
Marc-André Lureau 已提交
1031

1032
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
1033 1034 1035
info: qemu-doc.info docs/interop/qemu-qmp-ref.info docs/interop/qemu-ga-ref.info
pdf: qemu-doc.pdf docs/interop/qemu-qmp-ref.pdf docs/interop/qemu-ga-ref.pdf
txt: qemu-doc.txt docs/interop/qemu-qmp-ref.txt docs/interop/qemu-ga-ref.txt
1036

1037
qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
1038 1039
	qemu-img.texi qemu-nbd.texi qemu-options.texi \
	qemu-tech.texi qemu-option-trace.texi \
1040
	qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi \
1041
	qemu-monitor-info.texi docs/qemu-block-drivers.texi \
1042
	docs/qemu-cpu-models.texi docs/security.texi
1043

1044 1045 1046 1047
docs/interop/qemu-ga-ref.dvi docs/interop/qemu-ga-ref.html \
    docs/interop/qemu-ga-ref.info docs/interop/qemu-ga-ref.pdf \
    docs/interop/qemu-ga-ref.txt docs/interop/qemu-ga-ref.7: \
	docs/interop/qemu-ga-ref.texi docs/interop/qemu-ga-qapi.texi
1048

1049 1050 1051 1052
docs/interop/qemu-qmp-ref.dvi docs/interop/qemu-qmp-ref.html \
    docs/interop/qemu-qmp-ref.info docs/interop/qemu-qmp-ref.pdf \
    docs/interop/qemu-qmp-ref.txt docs/interop/qemu-qmp-ref.7: \
	docs/interop/qemu-qmp-ref.texi docs/interop/qemu-qmp-qapi.texi
1053

1054 1055
$(filter %.1 %.7 %.8,$(DOCS)): scripts/texi2pod.pl

1056 1057 1058 1059 1060
# Reports/Analysis

%/coverage-report.html:
	@mkdir -p $*
	$(call quiet-command,\
1061 1062 1063
		gcovr -r $(SRC_PATH) \
		$(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
		 --object-directory $(BUILD_DIR) \
1064
		-p --html --html-details -o $@, \
1065 1066 1067 1068
		"GEN", "coverage-report.html")

.PHONY: coverage-report
coverage-report: $(CURDIR)/reports/coverage/coverage-report.html
1069

1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
ifdef CONFIG_WIN32

INSTALLER = qemu-setup-$(VERSION)$(EXESUF)

nsisflags = -V2 -NOCD

ifneq ($(wildcard $(SRC_PATH)/dll),)
ifeq ($(ARCH),x86_64)
# 64 bit executables
DLL_PATH = $(SRC_PATH)/dll/w64
nsisflags += -DW64
else
# 32 bit executables
DLL_PATH = $(SRC_PATH)/dll/w32
endif
endif

.PHONY: installer
installer: $(INSTALLER)

INSTDIR=/tmp/qemu-nsis

1092
$(INSTALLER): install-doc $(SRC_PATH)/qemu.nsi
E
Ed Maste 已提交
1093
	$(MAKE) install prefix=${INSTDIR}
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
ifdef SIGNCODE
	(cd ${INSTDIR}; \
         for i in *.exe; do \
           $(SIGNCODE) $${i}; \
         done \
        )
endif # SIGNCODE
	(cd ${INSTDIR}; \
         for i in qemu-system-*.exe; do \
           arch=$${i%.exe}; \
           arch=$${arch#qemu-system-}; \
           echo Section \"$$arch\" Section_$$arch; \
           echo SetOutPath \"\$$INSTDIR\"; \
           echo File \"\$${BINDIR}\\$$i\"; \
           echo SectionEnd; \
         done \
        ) >${INSTDIR}/system-emulations.nsh
	makensis $(nsisflags) \
                $(if $(BUILD_DOCS),-DCONFIG_DOCUMENTATION="y") \
                $(if $(CONFIG_GTK),-DCONFIG_GTK="y") \
                -DBINDIR="${INSTDIR}" \
                $(if $(DLL_PATH),-DDLLDIR="$(DLL_PATH)") \
                -DSRCDIR="$(SRC_PATH)" \
                -DOUTFILE="$(INSTALLER)" \
1118
                -DDISPLAYVERSION="$(VERSION)" \
1119 1120 1121 1122 1123 1124 1125
                $(SRC_PATH)/qemu.nsi
	rm -r ${INSTDIR}
ifdef SIGNCODE
	$(SIGNCODE) $(INSTALLER)
endif # SIGNCODE
endif # CONFIG_WIN

1126 1127
# Add a dependency on the generated files, so that they are always
# rebuilt before other object files
1128
ifneq ($(wildcard config-host.mak),)
F
Fam Zheng 已提交
1129
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
1130
Makefile: $(generated-files-y)
1131
endif
1132
endif
1133

1134 1135 1136 1137
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
	$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
	$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)

B
bellard 已提交
1138
# Include automatically generated dependency files
1139 1140
# Dependencies in Makefile.objs files come from our recursive subdir rules
-include $(wildcard *.d tests/*.d)
F
Fam Zheng 已提交
1141 1142

include $(SRC_PATH)/tests/docker/Makefile.include
F
Fam Zheng 已提交
1143
include $(SRC_PATH)/tests/vm/Makefile.include
1144 1145 1146 1147 1148

.PHONY: help
help:
	@echo  'Generic targets:'
	@echo  '  all             - Build all'
1149 1150 1151
ifdef CONFIG_MODULES
	@echo  '  modules         - Build all modules'
endif
1152 1153 1154 1155 1156
	@echo  '  dir/file.o      - Build specified target only'
	@echo  '  install         - Install QEMU, documentation and tools'
	@echo  '  ctags/TAGS      - Generate tags file for editors'
	@echo  '  cscope          - Generate cscope index'
	@echo  ''
1157
	@$(if $(TARGET_DIRS), \
1158
		echo 'Architecture specific targets:'; \
1159
		$(foreach t, $(TARGET_DIRS), \
1160
		printf "  %-30s - Build for %s\\n" $(t)/all $(t);) \
1161 1162 1163
		echo '')
	@echo  'Cleaning targets:'
	@echo  '  clean           - Remove most generated files but keep the config'
1164 1165 1166
ifdef CONFIG_GCOV
	@echo  '  clean-coverage  - Remove coverage files'
endif
1167 1168 1169 1170 1171
	@echo  '  distclean       - Remove all generated files'
	@echo  '  dist            - Build a distributable tarball'
	@echo  ''
	@echo  'Test targets:'
	@echo  '  check           - Run all tests (check-help for details)'
1172
	@echo  '  docker          - Help about targets running tests inside containers'
1173
	@echo  '  vm-help         - Help about targets running tests inside VM'
1174 1175
	@echo  ''
	@echo  'Documentation targets:'
1176
	@echo  '  html info pdf txt'
1177
	@echo  '                  - Build documentation in specified format'
1178 1179 1180
ifdef CONFIG_GCOV
	@echo  '  coverage-report - Create code coverage report'
endif
1181 1182 1183
	@echo  ''
ifdef CONFIG_WIN32
	@echo  'Windows targets:'
1184
	@echo  '  installer       - Build NSIS-based installer for QEMU'
1185 1186 1187 1188 1189
ifdef QEMU_GA_MSI_ENABLED
	@echo  '  msi             - Build MSI-based installer for qemu-ga'
endif
	@echo  ''
endif
1190 1191
	@echo  '  $(MAKE) [targets]      (quiet build, default)'
	@echo  '  $(MAKE) V=1 [targets]  (verbose build)'