Makefile 41.8 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-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 77 78 79 80 81 82 83
	@# TODO: The next lines include code which supports a smooth
	@# transition from old configurations without config.status.
	@# This code can be removed after QEMU 1.7.
	@if test -x config.status; then \
	    ./config.status; \
        else \
	    sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
	fi
84 85
else
config-host.mak:
F
Fam Zheng 已提交
86
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
87 88 89
	@echo "Please call configure before running make!"
	@exit 1
endif
90
endif
B
bellard 已提交
91

F
Fam Zheng 已提交
92 93
include $(SRC_PATH)/rules.mak

94 95 96 97
# notempy and lor are defined in rules.mak
CONFIG_TOOLS := $(call notempty,$(TOOLS))
CONFIG_BLOCK := $(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS))

98 99 100 101 102 103 104 105 106 107 108 109 110 111
# 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))

112
generated-files-y = qemu-version.h config-host.h qemu-options.def
E
Eric Blake 已提交
113 114 115 116 117 118 119 120 121 122 123 124

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)
125
GENERATED_QAPI_FILES += qapi/qapi-emit-events.h qapi/qapi-emit-events.c
E
Eric Blake 已提交
126 127 128 129 130 131
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

132
generated-files-y += $(GENERATED_QAPI_FILES)
133

134
generated-files-y += trace/generated-tcg-tracers.h
135

136 137 138
generated-files-y += trace/generated-helpers-wrappers.h
generated-files-y += trace/generated-helpers.h
generated-files-y += trace/generated-helpers.c
139

140 141
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.h
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.c
142

143
generated-files-y += module_block.h
144

145 146 147 148 149 150 151 152 153 154 155
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

156 157 158 159
generated-files-y += $(TRACE_HEADERS)
generated-files-y += $(TRACE_SOURCES)
generated-files-y += $(BUILD_DIR)/trace-events-all
generated-files-y += .git-submodule-status
160 161 162

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

163 164 165
tracetool-y = $(SRC_PATH)/scripts/tracetool.py
tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")

166 167
%/trace.h: %/trace.h-timestamp
	@cmp $< $@ >/dev/null 2>&1 || cp $< $@
168
%/trace.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
169 170 171 172 173 174 175 176
	$(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 $< $@
177
%/trace.c-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
178 179 180 181 182 183 184 185
	$(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 $< $@
186
%/trace-ust.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
	$(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 $< $@
210
trace-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
211 212 213 214 215 216 217 218
	$(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 $< $@
219
trace-root.c-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
220 221 222 223 224 225 226 227
	$(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 $< $@
228
trace-ust-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
229 230 231 232 233 234 235 236
	$(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 $< $@
237
trace-ust-all.h-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
238 239 240 241 242 243 244 245
	$(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 $< $@
246
trace-ust-all.c-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
	$(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

267 268 269 270
KEYCODEMAP_GEN = $(SRC_PATH)/ui/keycodemapdb/tools/keymap-gen
KEYCODEMAP_CSV = $(SRC_PATH)/ui/keycodemapdb/data/keymaps.csv

KEYCODEMAP_FILES = \
271
		 ui/input-keymap-atset1-to-qcode.c \
272
		 ui/input-keymap-linux-to-qcode.c \
273 274 275
		 ui/input-keymap-qcode-to-atset1.c \
		 ui/input-keymap-qcode-to-atset2.c \
		 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 282 283 284 285 286
		 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 \
287
		 ui/input-keymap-osx-to-qcode.c \
288 289
		 $(NULL)

290
generated-files-$(CONFIG_SOFTMMU) += $(KEYCODEMAP_FILES)
291 292 293

ui/input-keymap-%.c: $(KEYCODEMAP_GEN) $(KEYCODEMAP_CSV) $(SRC_PATH)/ui/Makefile.objs
	$(call quiet-command,\
J
Jan Beulich 已提交
294
	    stem=$* && src=$${stem%-to-*} dst=$${stem#*-to-} && \
295 296 297 298 299 300 301 302 303 304
	    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

305 306 307 308
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",$<)

309 310 311 312 313
# Don't try to regenerate Makefile or configure
# We don't generate any of them
Makefile: ;
configure: ;

314
.PHONY: all clean cscope distclean html info install install-doc \
315
	pdf txt recurse-all dist msi FORCE
316

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

J
Juan Quintela 已提交
319
LIBS+=-lz $(LIBS_TOOLS)
320

M
Marc-André Lureau 已提交
321 322 323
vhost-user-json-y =
HELPERS-y =

324
HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = qemu-bridge-helper$(EXESUF)
325

M
Marc-André Lureau 已提交
326 327 328 329 330 331 332 333 334
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

335
ifdef BUILD_DOCS
336
DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
337 338
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
339
DOCS+=docs/qemu-block-drivers.7
340
DOCS+=docs/qemu-cpu-models.7
341
ifdef CONFIG_VIRTFS
342
DOCS+=fsdev/virtfs-proxy-helper.1
343
endif
344 345 346
ifdef CONFIG_TRACE_SYSTEMTAP
DOCS+=scripts/qemu-trace-stap.1
endif
347 348 349
else
DOCS=
endif
B
bellard 已提交
350

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

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

P
Paul Brook 已提交
366 367
-include $(SUBDIR_DEVICES_MAK_DEP)

P
Paolo Bonzini 已提交
368 369
# This has to be kept in sync with Kconfig.host.
MINIKCONF_ARGS = \
370
    $(CONFIG_MINIKCONF_MODE) \
371
    $@ $*/config-devices.mak.d $< $(MINIKCONF_INPUTS) \
P
Paolo Bonzini 已提交
372 373 374 375 376 377 378 379 380
    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) \
381 382
    CONFIG_LINUX=$(CONFIG_LINUX) \
    CONFIG_PVRDMA=$(CONFIG_PVRDMA)
P
Paolo Bonzini 已提交
383 384 385 386 387 388

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")
389
	$(call quiet-command, if test -f $@; then \
390
	  if cmp -s $@.old $@; then \
P
Paul Brook 已提交
391 392
	    mv $@.tmp $@; \
	    cp -p $@ $@.old; \
393 394 395 396 397 398
	  else \
	    if test -f $@.old; then \
	      echo "WARNING: $@ (user modified) out of date.";\
	    else \
	      echo "WARNING: $@ out of date.";\
	    fi; \
399
	    echo "Run \"$(MAKE) defconfig\" to regenerate."; \
400 401
	    rm $@.tmp; \
	  fi; \
402
	 else \
403 404
	  mv $@.tmp $@; \
	  cp -p $@ $@.old; \
405
	 fi,"GEN","$@");
406 407 408 409

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

410 411
ifneq ($(wildcard config-host.mak),)
include $(SRC_PATH)/Makefile.objs
412 413 414 415
endif

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

444
include $(SRC_PATH)/tests/Makefile.include
445

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

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

459 460
config-host.h: config-host.h-timestamp
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","$@")
463

464
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
465 466
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)
474

475
subdir-%:
P
Paul Brook 已提交
476
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
P
pbrook 已提交
477

478
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
479 480
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
481

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,)
484

485
dtc/%: .git-submodule-status
486
	@mkdir -p $@
487

488 489 490 491 492 493 494 495 496 497 498 499 500
# 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

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))
502

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)")
505

506
$(SUBDIR_RULES): libqemuutil.a $(common-obj-y) \
507
	$(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
508

P
Paul Brook 已提交
509
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
510
# Only keep -O and -g cflags
P
Paul Brook 已提交
511
romsubdir-%:
512
	$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/" CFLAGS="$(filter -O% -g%,$(CFLAGS))",)
P
Paul Brook 已提交
513

514
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
P
Paul Brook 已提交
515 516

recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
B
bellard 已提交
517

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

521
Makefile: $(version-obj-y)
522 523

######################################################################
524
# Build libraries
525

P
Paolo Bonzini 已提交
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)
528

A
Alon Levy 已提交
529
######################################################################
B
bellard 已提交
530

P
Paolo Bonzini 已提交
531
COMMON_LDADDS = libqemuutil.a
532

J
Juan Quintela 已提交
533
qemu-img.o: qemu-img-cmds.h
534

535 536 537
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)
538

539
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
540

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

543 544
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 547
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)
549 550 551
ifdef CONFIG_MPATH
scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
endif
P
Paolo Bonzini 已提交
552

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","$@")
555

556
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
557
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
558

G
Gerd Hoffmann 已提交
559 560 561
qemu-keymap$(EXESUF): LIBS += $(XKBCOMMON_LIBS)
qemu-keymap$(EXESUF): QEMU_CFLAGS += $(XKBCOMMON_CFLAGS)

562 563 564 565 566 567 568 569 570 571 572
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 \
573
qga/qapi-generated/qga-qapi-commands.h qga/qapi-generated/qga-qapi-commands.c \
574 575 576
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 已提交
577
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
578 579 580
		-o qga/qapi-generated -p "qga-" $<, \
		"GEN","$(@:%-timestamp=%)")
	@>$@
581

E
Eric Blake 已提交
582 583 584 585
qapi-modules = $(SRC_PATH)/qapi/qapi-schema.json \
               $(QAPI_MODULES:%=$(SRC_PATH)/qapi/%.json)

$(GENERATED_QAPI_FILES): qapi-gen-timestamp ;
586
qapi-gen-timestamp: $(qapi-modules) $(qapi-py)
M
Matthias Maier 已提交
587
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
588
		-o "qapi" -b $<, \
589 590
		"GEN","$(@:%-timestamp=%)")
	@>$@
591

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)
594

595
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
596
	$(call LINK, $^)
M
Michael Roth 已提交
597

598 599 600
ifdef QEMU_GA_MSI_ENABLED
QEMU_GA_MSI=qemu-ga-$(ARCH).msi

601
msi: $(QEMU_GA_MSI)
602

603
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
604 605 606

$(QEMU_GA_MSI): config-host.mak

607 608
$(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)" \
609
	wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
610 611
else
msi:
612
	@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
613 614
endif

615 616 617 618 619
ifneq ($(EXESUF),)
.PHONY: qemu-ga
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
endif

620 621
elf2dmp$(EXESUF): LIBS += $(CURL_LIBS)
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
V
Viktor Prutyanov 已提交
622 623
	$(call LINK, $^)

624
ifdef CONFIG_IVSHMEM
625
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
626
	$(call LINK, $^)
627
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
628
	$(call LINK, $^)
629
endif
630
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) libvhost-user.a
631
	$(call LINK, $^)
632 633
vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
	$(call LINK, $^)
634 635

rdmacm-mux$(EXESUF): LIBS += "-libumad"
636 637
rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
	$(call LINK, $^)
638

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

642 643 644 645 646 647 648 649 650 651
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

652 653 654
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))), \
655
	"GEN","$@")
656

657 658 659 660 661 662 663 664
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

665
clean:
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
669
	rm -f *.msi
670 671 672 673 674
	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 {} +
675
	rm -f $(edk2-decompressed)
676
	rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga$(EXESUF) TAGS cscope.* *.pod *~ */*~
P
Paolo Bonzini 已提交
677
	rm -f fsdev/*.pod scsi/*.pod
B
Blue Swirl 已提交
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 682
	rm -f trace/generated-tracers-dtrace.dtrace*
	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 \
M
Magnus Damm 已提交
687
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
688
	rm -f $$d/qemu-options.def; \
B
bellard 已提交
689
        done
690
	rm -f config-all-devices.mak
691

692 693 694 695 696 697 698
VERSION ?= $(shell cat VERSION)

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

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

699 700 701 702 703 704 705 706 707 708 709
# 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

710
define clean-manual =
711 712
rm -rf $(MANUAL_BUILDDIR)/$1/_static
rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
713 714
endef

B
bellard 已提交
715
distclean: clean
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
M
Magnus Damm 已提交
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
B
Brad Hards 已提交
722 723
	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
724
	rm -f qemu-doc.vr qemu-doc.txt
725
	rm -f config.log
726
	rm -f linux-headers/asm
727 728 729 730 731 732
	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
733
	rm -f docs/qemu-block-drivers.7
734
	rm -f docs/qemu-cpu-models.7
P
Peter Maydell 已提交
735
	rm -rf .doctrees
736 737
	$(call clean-manual,devel)
	$(call clean-manual,interop)
738
	$(call clean-manual,specs)
739
	for d in $(TARGET_DIRS); do \
B
bellard 已提交
740
	rm -rf $$d || exit 1 ; \
B
updated  
bellard 已提交
741
        done
742
	rm -Rf .sdk
E
Ed Maste 已提交
743
	if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
B
bellard 已提交
744

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

T
ths 已提交
750
ifdef INSTALL_BLOBS
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 756
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
757 758
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
G
Gerd Hoffmann 已提交
759
efi-e1000e.rom efi-vmxnet3.rom \
B
BALATON Zoltan 已提交
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 \
764
palcode-clipper \
765
u-boot.e500 u-boot-sam460-20100605.bin \
766
qemu_vga.ndrv \
767
edk2-licenses.txt \
768
hppa-firmware.img
769 770 771

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 已提交
772 773
else
BLOBS=
774
DESCS=
T
ths 已提交
775 776
endif

777 778
# Note that we manually filter-out the non-Sphinx documentation which
# 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
782 783 784 785 786 787 788
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)
789
	$(call install-manual,specs)
790 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 796
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
797
ifdef CONFIG_POSIX
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"
804 805
ifneq ($(TOOLS),)
	$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
806 807
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
808
endif
809 810 811
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_DATA) scripts/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
endif
M
Marc-André Lureau 已提交
812 813
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
814 815 816
	$(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 已提交
817
endif
818
endif
819 820 821 822
ifdef CONFIG_VIRTFS
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
endif
823 824 825 826

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

827 828 829 830 831 832 833
install-localstatedir:
ifdef CONFIG_POSIX
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
endif
endif

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

836 837
install: all $(if $(BUILD_DOCS),install-doc) install-datadir install-localstatedir \
	$(if $(INSTALL_BLOBS),$(edk2-decompressed))
838
ifneq ($(TOOLS),)
839
	$(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(TOOLS)),$(DESTDIR)$(bindir))
840
endif
841 842
ifneq ($(CONFIG_MODULES),)
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
843 844
	for s in $(modules-m:.mo=$(DSOSUF)); do \
		t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
845
		$(INSTALL_LIB) $$s "$$t"; \
846
		test -z "$(STRIP)" || $(STRIP) "$$t"; \
847 848
	done
endif
849
ifneq ($(HELPERS-y),)
850
	$(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
851
endif
M
Marc-André Lureau 已提交
852 853 854 855 856 857
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
858 859 860
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_PROG) "scripts/qemu-trace-stap" $(DESTDIR)$(bindir)
endif
T
ths 已提交
861 862
ifneq ($(BLOBS),)
	set -e; for x in $(BLOBS); do \
863
		$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
P
pbrook 已提交
864
	done
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
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 \
		sed -e 's,@DATADIR@,$(DESTDIR)$(qemu_datadir),' \
			"$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
		$(INSTALL_DATA) "$$tmpf" \
			"$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
	done
880
endif
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"; \
885
	done; \
886
	mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
887
	$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
888 889
		"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
	mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
890
	$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
891 892
		"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
	mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
893
	$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
894
		"$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
895
ifdef CONFIG_GTK
896
	$(MAKE) -C po $@
T
ths 已提交
897
endif
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"; \
P
pbrook 已提交
901
	done
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 ; \
B
bellard 已提交
905
        done
B
bellard 已提交
906

F
Fam Zheng 已提交
907 908
.PHONY: ctags
ctags:
909
	rm -f tags
F
Fam Zheng 已提交
910 911
	find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +

A
Alexandre Bique 已提交
912
.PHONY: TAGS
913
TAGS:
914
	rm -f TAGS
D
David Gibson 已提交
915
	find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
916

B
bellard 已提交
917
cscope:
F
Fam Zheng 已提交
918 919 920
	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 已提交
921

922 923 924 925 926
# 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 $< > $@,\
927
		"VERT","$@")
928 929 930 931 932

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 $< > $@,\
933
		"FRAG","$@")
934

935
ui/shader.o: $(SRC_PATH)/ui/shader.c \
G
Gerd Hoffmann 已提交
936 937 938
	ui/shader/texture-blit-vert.h \
	ui/shader/texture-blit-flip-vert.h \
	ui/shader/texture-blit-frag.h
939

B
bellard 已提交
940
# documentation
941
MAKEINFO=makeinfo
942 943
MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
944
TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
945
TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
946

947 948 949 950 951
docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
	$(call quiet-command,(\
		echo "@set VERSION $(VERSION)" && \
		echo "@set CONFDIR $(qemu_confdir)" \
	)> $@,"GEN","$@")
952

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

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

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

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

967 968 969 970
# 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
971
sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html $(MANUAL_BUILDDIR)/interop/index.html $(MANUAL_BUILDDIR)/specs/index.html
972 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 976 977
# 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

978
$(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
979 980
	$(call build-manual,devel)

981
$(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
982 983
	$(call build-manual,interop)

984 985 986
$(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
	$(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","$@")
B
bellard 已提交
989

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

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","$@")
995

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","$@")
998

999
docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
1000
	@cp -p $< $@
1001

1002 1003
docs/interop/qemu-ga-qapi.texi: qga/qapi-generated/qga-qapi-doc.texi
	@cp -p $< $@
1004

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
M
Marc-André Lureau 已提交
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
M
Marc-André Lureau 已提交
1014

1015
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
1016 1017 1018
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
1019

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
1025

1026 1027 1028 1029
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
1030

1031 1032 1033 1034
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
1035

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

1038 1039 1040 1041 1042
# Reports/Analysis

%/coverage-report.html:
	@mkdir -p $*
	$(call quiet-command,\
1043 1044 1045
		gcovr -r $(SRC_PATH) \
		$(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
		 --object-directory $(BUILD_DIR) \
1046
		-p --html --html-details -o $@, \
1047 1048 1049 1050
		"GEN", "coverage-report.html")

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

1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
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

$(INSTALLER): $(SRC_PATH)/qemu.nsi
E
Ed Maste 已提交
1075
	$(MAKE) install prefix=${INSTDIR}
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
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)" \
1100
                -DDISPLAYVERSION="$(VERSION)" \
1101 1102 1103 1104 1105 1106 1107
                $(SRC_PATH)/qemu.nsi
	rm -r ${INSTDIR}
ifdef SIGNCODE
	$(SIGNCODE) $(INSTALLER)
endif # SIGNCODE
endif # CONFIG_WIN

1108 1109
# Add a dependency on the generated files, so that they are always
# rebuilt before other object files
1110
ifneq ($(wildcard config-host.mak),)
F
Fam Zheng 已提交
1111
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
1112
Makefile: $(generated-files-y)
1113
endif
1114
endif
1115

1116 1117 1118 1119
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
	$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
	$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)

B
bellard 已提交
1120
# Include automatically generated dependency files
1121 1122
# Dependencies in Makefile.objs files come from our recursive subdir rules
-include $(wildcard *.d tests/*.d)
F
Fam Zheng 已提交
1123 1124

include $(SRC_PATH)/tests/docker/Makefile.include
F
Fam Zheng 已提交
1125
include $(SRC_PATH)/tests/vm/Makefile.include
1126 1127 1128 1129 1130

.PHONY: help
help:
	@echo  'Generic targets:'
	@echo  '  all             - Build all'
1131 1132 1133
ifdef CONFIG_MODULES
	@echo  '  modules         - Build all modules'
endif
1134 1135 1136 1137 1138
	@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  ''
1139
	@$(if $(TARGET_DIRS), \
1140
		echo 'Architecture specific targets:'; \
1141
		$(foreach t, $(TARGET_DIRS), \
1142 1143 1144 1145
		printf "  %-30s - Build for %s\\n" $(patsubst %,subdir-%,$(t)) $(t);) \
		echo '')
	@echo  'Cleaning targets:'
	@echo  '  clean           - Remove most generated files but keep the config'
1146 1147 1148
ifdef CONFIG_GCOV
	@echo  '  clean-coverage  - Remove coverage files'
endif
1149 1150 1151 1152 1153 1154
	@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)'
	@echo  '  docker          - Help about targets running tests inside Docker containers'
F
Fam Zheng 已提交
1155
	@echo  '  vm-test         - Help about targets running tests inside VM'
1156 1157
	@echo  ''
	@echo  'Documentation targets:'
1158
	@echo  '  html info pdf txt'
1159
	@echo  '                  - Build documentation in specified format'
1160 1161 1162
ifdef CONFIG_GCOV
	@echo  '  coverage-report - Create code coverage report'
endif
1163 1164 1165
	@echo  ''
ifdef CONFIG_WIN32
	@echo  'Windows targets:'
1166
	@echo  '  installer       - Build NSIS-based installer for QEMU'
1167 1168 1169 1170 1171
ifdef QEMU_GA_MSI_ENABLED
	@echo  '  msi             - Build MSI-based installer for qemu-ga'
endif
	@echo  ''
endif
1172 1173
	@echo  '  $(MAKE) [targets]      (quiet build, default)'
	@echo  '  $(MAKE) V=1 [targets]  (verbose build)'