Makefile 42.1 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 88 89 90
# notempy and lor are defined in rules.mak
CONFIG_TOOLS := $(call notempty,$(TOOLS))
CONFIG_BLOCK := $(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS))

91 92 93 94 95 96 97 98 99 100 101 102 103 104
# 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))

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

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)
118
GENERATED_QAPI_FILES += qapi/qapi-emit-events.h qapi/qapi-emit-events.c
E
Eric Blake 已提交
119 120 121 122 123 124
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

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

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

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

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

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

138 139 140 141 142 143 144 145 146 147 148
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

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

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

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

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

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

KEYCODEMAP_FILES = \
264
		 ui/input-keymap-atset1-to-qcode.c \
265
		 ui/input-keymap-linux-to-qcode.c \
266 267 268
		 ui/input-keymap-qcode-to-atset1.c \
		 ui/input-keymap-qcode-to-atset2.c \
		 ui/input-keymap-qcode-to-atset3.c \
269
		 ui/input-keymap-qcode-to-linux.c \
270
		 ui/input-keymap-qcode-to-qnum.c \
271
		 ui/input-keymap-qcode-to-sun.c \
272
		 ui/input-keymap-qnum-to-qcode.c \
273
		 ui/input-keymap-usb-to-qcode.c \
274 275 276 277 278 279
		 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 \
280
		 ui/input-keymap-osx-to-qcode.c \
281 282
		 $(NULL)

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

ui/input-keymap-%.c: $(KEYCODEMAP_GEN) $(KEYCODEMAP_CSV) $(SRC_PATH)/ui/Makefile.objs
	$(call quiet-command,\
J
Jan Beulich 已提交
287
	    stem=$* && src=$${stem%-to-*} dst=$${stem#*-to-} && \
288 289 290 291 292 293 294 295 296 297
	    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

298 299 300 301
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",$<)

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

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

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

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

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

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

M
Marc-André Lureau 已提交
319 320 321 322 323 324 325 326 327
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

328
ifdef BUILD_DOCS
329
DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
330 331
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
332
DOCS+=docs/qemu-block-drivers.7
333
DOCS+=docs/qemu-cpu-models.7
334
ifdef CONFIG_VIRTFS
335
DOCS+=fsdev/virtfs-proxy-helper.1
336
endif
337 338 339
ifdef CONFIG_TRACE_SYSTEMTAP
DOCS+=scripts/qemu-trace-stap.1
endif
340 341 342
else
DOCS=
endif
B
bellard 已提交
343

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

348
ifeq ($(SUBDIR_DEVICES_MAK),)
349
config-all-devices.mak: config-host.mak
350
	$(call quiet-command,echo '# no devices' > $@,"GEN","$@")
351
else
352
config-all-devices.mak: $(SUBDIR_DEVICES_MAK) config-host.mak
353 354 355
	$(call quiet-command, sed -n \
             's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
             $(SUBDIR_DEVICES_MAK) | sort -u > $@, \
356
             "GEN","$@")
357
endif
358

P
Paul Brook 已提交
359 360
-include $(SUBDIR_DEVICES_MAK_DEP)

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

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

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

403 404
ifneq ($(wildcard config-host.mak),)
include $(SRC_PATH)/Makefile.objs
405 406 407 408
endif

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

437
include $(SRC_PATH)/tests/Makefile.include
438

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

441 442
qemu-version.h: FORCE
	$(call quiet-command, \
443 444
                (printf '#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
		printf '#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
445
		) > $@.tmp)
446 447 448 449 450
	$(call quiet-command, if ! cmp -s $@ $@.tmp; then \
	  mv $@.tmp $@; \
	 else \
	  rm $@.tmp; \
	 fi)
451

452 453
config-host.h: config-host.h-timestamp
config-host.h-timestamp: config-host.mak
454
qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
455
	$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
456

457
TARGET_DIRS_RULES := $(foreach t, all clean install, $(addsuffix /$(t), $(TARGET_DIRS)))
458

459 460 461 462 463 464 465 466
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)
467

468 469 470 471 472
.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 已提交
473

474
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
475 476
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
477

478 479
.PHONY: dtc/all
dtc/all: .git-submodule-status dtc/libfdt dtc/tests
480
	$(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,)
481

482
dtc/%: .git-submodule-status
483
	@mkdir -p $@
484

485 486 487 488 489 490 491 492 493 494 495 496
# 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

497 498
.PHONY: capstone/all
capstone/all: .git-submodule-status
499
	$(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))
500

501 502
.PHONY: slirp/all
slirp/all: .git-submodule-status
503
	$(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)")
504

505 506 507 508 509 510
# 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

511
$(filter %/all, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
512
	$(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
513

514
ROM_DIRS = $(addprefix pc-bios/, $(ROMS))
515
ROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS)))
516
# Only keep -O and -g cflags
517 518 519
.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 已提交
520

521
.PHONY: recurse-all recurse-clean recurse-install
522 523 524
recurse-all: $(addsuffix /all, $(TARGET_DIRS) $(ROM_DIRS))
recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
recurse-install: $(addsuffix /install, $(TARGET_DIRS))
525
$(addsuffix /install, $(TARGET_DIRS)): all
B
bellard 已提交
526

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

530
Makefile: $(version-obj-y)
531 532

######################################################################
533
# Build libraries
534

P
Paolo Bonzini 已提交
535
libqemuutil.a: $(util-obj-y) $(trace-obj-y) $(stub-obj-y)
536
libvhost-user.a: $(libvhost-user-obj-y) $(util-obj-y) $(stub-obj-y)
537

A
Alon Levy 已提交
538
######################################################################
B
bellard 已提交
539

P
Paolo Bonzini 已提交
540
COMMON_LDADDS = libqemuutil.a
541

J
Juan Quintela 已提交
542
qemu-img.o: qemu-img-cmds.h
543

544 545 546
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)
547

548
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
549

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

552 553
qemu-edid$(EXESUF): qemu-edid.o hw/display/edid-generate.o $(COMMON_LDADDS)

554
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
555 556
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap

557
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)
558 559 560
ifdef CONFIG_MPATH
scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
endif
P
Paolo Bonzini 已提交
561

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

565
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
566
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
567

G
Gerd Hoffmann 已提交
568 569 570
qemu-keymap$(EXESUF): LIBS += $(XKBCOMMON_LIBS)
qemu-keymap$(EXESUF): QEMU_CFLAGS += $(XKBCOMMON_CFLAGS)

571 572 573 574 575 576 577 578 579 580 581
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 \
582
qga/qapi-generated/qga-qapi-commands.h qga/qapi-generated/qga-qapi-commands.c \
583 584 585
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 已提交
586
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
587 588 589
		-o qga/qapi-generated -p "qga-" $<, \
		"GEN","$(@:%-timestamp=%)")
	@>$@
590

E
Eric Blake 已提交
591 592 593 594
qapi-modules = $(SRC_PATH)/qapi/qapi-schema.json \
               $(QAPI_MODULES:%=$(SRC_PATH)/qapi/%.json)

$(GENERATED_QAPI_FILES): qapi-gen-timestamp ;
595
qapi-gen-timestamp: $(qapi-modules) $(qapi-py)
M
Matthias Maier 已提交
596
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
597
		-o "qapi" -b $<, \
598 599
		"GEN","$(@:%-timestamp=%)")
	@>$@
600

601
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h)
602
$(qga-obj-y): $(QGALIB_GEN)
603

604
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
605
	$(call LINK, $^)
M
Michael Roth 已提交
606

607 608 609
ifdef QEMU_GA_MSI_ENABLED
QEMU_GA_MSI=qemu-ga-$(ARCH).msi

610
msi: $(QEMU_GA_MSI)
611

612
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
613 614 615

$(QEMU_GA_MSI): config-host.mak

616 617
$(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)" \
618
	wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
619 620
else
msi:
621
	@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
622 623
endif

624 625 626 627 628
ifneq ($(EXESUF),)
.PHONY: qemu-ga
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
endif

629 630
elf2dmp$(EXESUF): LIBS += $(CURL_LIBS)
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
V
Viktor Prutyanov 已提交
631 632
	$(call LINK, $^)

633
ifdef CONFIG_IVSHMEM
634
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
635
	$(call LINK, $^)
636
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
637
	$(call LINK, $^)
638
endif
639
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) libvhost-user.a
640
	$(call LINK, $^)
641 642
vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
	$(call LINK, $^)
643 644

rdmacm-mux$(EXESUF): LIBS += "-libumad"
645 646
rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
	$(call LINK, $^)
647

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

651 652 653 654 655 656 657 658 659 660
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

661 662 663
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))), \
664
	"GEN","$@")
665

666 667 668 669 670 671 672 673
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

674
clean: recurse-clean
675
# avoid old build problems by removing potentially incorrect old files
676
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
677
	rm -f qemu-options.def
678
	rm -f *.msi
679 680 681 682 683
	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 {} +
684
	rm -f $(edk2-decompressed)
685
	rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga$(EXESUF) TAGS cscope.* *.pod *~ */*~
P
Paolo Bonzini 已提交
686
	rm -f fsdev/*.pod scsi/*.pod
B
Blue Swirl 已提交
687
	rm -f qemu-img-cmds.h
688
	rm -f ui/shader/*-vert.h ui/shader/*-frag.h
689
	@# May not be present in generated-files-y
690 691
	rm -f trace/generated-tracers-dtrace.dtrace*
	rm -f trace/generated-tracers-dtrace.h*
692
	rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
693
	rm -f qapi-gen-timestamp
694
	rm -rf qga/qapi-generated
695
	rm -f config-all-devices.mak
696

697 698 699 700 701 702 703
VERSION ?= $(shell cat VERSION)

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

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

704 705 706 707 708 709 710 711 712 713 714
# 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

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

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

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

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

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 已提交
777 778
else
BLOBS=
779
DESCS=
T
ths 已提交
780 781
endif

782 783
# Note that we manually filter-out the non-Sphinx documentation which
# is currently built into the docs/interop directory in the build tree.
784
define install-manual =
785
for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
786
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
787 788 789 790 791 792 793
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)
794
	$(call install-manual,specs)
795 796

install-doc: $(DOCS) install-sphinxdocs
797
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
798
	$(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
799
	$(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
800 801
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
802
ifdef CONFIG_POSIX
803
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
804
	$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
805
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
806
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
807
	$(INSTALL_DATA) docs/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
808
	$(INSTALL_DATA) docs/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
809 810
ifneq ($(TOOLS),)
	$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
811 812
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
813
endif
814 815 816
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_DATA) scripts/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
endif
M
Marc-André Lureau 已提交
817 818
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
819 820 821
	$(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 已提交
822
endif
823
endif
824 825 826 827
ifdef CONFIG_VIRTFS
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
endif
828 829 830 831

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

832 833 834 835 836 837 838
install-localstatedir:
ifdef CONFIG_POSIX
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
endif
endif

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

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

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

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

B
bellard 已提交
920
cscope:
F
Fam Zheng 已提交
921 922 923
	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 已提交
924

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

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 $< > $@,\
936
		"FRAG","$@")
937

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

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

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

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

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

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

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

970 971 972 973
# 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
974
sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html $(MANUAL_BUILDDIR)/interop/index.html $(MANUAL_BUILDDIR)/specs/index.html
975 976

# Canned command to build a single manual
977
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")
978 979 980
# 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

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

984
$(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
985 986
	$(call build-manual,interop)

987 988 989
$(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
	$(call build-manual,specs)

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

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

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

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

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

1005 1006
docs/interop/qemu-ga-qapi.texi: qga/qapi-generated/qga-qapi-doc.texi
	@cp -p $< $@
1007

1008
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
1009
qemu.1: qemu-option-trace.texi
1010
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1011
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
1012
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
M
Marc-André Lureau 已提交
1013
qemu-ga.8: qemu-ga.texi
1014
docs/qemu-block-drivers.7: docs/qemu-block-drivers.texi
1015
docs/qemu-cpu-models.7: docs/qemu-cpu-models.texi
1016
scripts/qemu-trace-stap.1: scripts/qemu-trace-stap.texi
M
Marc-André Lureau 已提交
1017

1018
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
1019 1020 1021
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
1022

1023
qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
1024
	qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
1025
	qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
1026
	qemu-monitor-info.texi docs/qemu-block-drivers.texi \
1027
	docs/qemu-cpu-models.texi docs/security.texi
1028

1029 1030 1031 1032
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
1033

1034 1035 1036 1037
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
1038

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

1041 1042 1043 1044 1045
# Reports/Analysis

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

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

1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
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 已提交
1078
	$(MAKE) install prefix=${INSTDIR}
1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
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)" \
1103
                -DDISPLAYVERSION="$(VERSION)" \
1104 1105 1106 1107 1108 1109 1110
                $(SRC_PATH)/qemu.nsi
	rm -r ${INSTDIR}
ifdef SIGNCODE
	$(SIGNCODE) $(INSTALLER)
endif # SIGNCODE
endif # CONFIG_WIN

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

1119 1120 1121 1122
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
	$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
	$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)

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

include $(SRC_PATH)/tests/docker/Makefile.include
F
Fam Zheng 已提交
1128
include $(SRC_PATH)/tests/vm/Makefile.include
1129 1130 1131 1132 1133

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