Makefile 41.5 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
	@./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
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
458 459
SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))

460
$(SOFTMMU_SUBDIR_RULES): $(authz-obj-y)
461
$(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
462
$(SOFTMMU_SUBDIR_RULES): $(chardev-obj-y)
463
$(SOFTMMU_SUBDIR_RULES): $(crypto-obj-y)
464
$(SOFTMMU_SUBDIR_RULES): $(io-obj-y)
465
$(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
466
$(SOFTMMU_SUBDIR_RULES): $(edk2-decompressed)
467

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

471
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
472 473
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
474

475
subdir-dtc: .git-submodule-status dtc/libfdt dtc/tests
476
	$(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,)
477

478
dtc/%: .git-submodule-status
479
	@mkdir -p $@
480

481 482 483 484 485 486 487 488 489 490 491 492 493
# 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
494
	$(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))
495

496
subdir-slirp: .git-submodule-status
497
	$(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)")
498

499
$(SUBDIR_RULES): libqemuutil.a $(common-obj-y) \
500
	$(qom-obj-y) $(crypto-user-obj-$(CONFIG_USER_ONLY))
501

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

507
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
P
Paul Brook 已提交
508 509

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

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

514
Makefile: $(version-obj-y)
515 516

######################################################################
517
# Build libraries
518

P
Paolo Bonzini 已提交
519
libqemuutil.a: $(util-obj-y) $(trace-obj-y) $(stub-obj-y)
520
libvhost-user.a: $(libvhost-user-obj-y) $(util-obj-y) $(stub-obj-y)
521

A
Alon Levy 已提交
522
######################################################################
B
bellard 已提交
523

P
Paolo Bonzini 已提交
524
COMMON_LDADDS = libqemuutil.a
525

J
Juan Quintela 已提交
526
qemu-img.o: qemu-img-cmds.h
527

528 529 530
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)
531

532
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
533

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

536 537
qemu-edid$(EXESUF): qemu-edid.o hw/display/edid-generate.o $(COMMON_LDADDS)

538
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
539 540
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap

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

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

549
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
550
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
551

G
Gerd Hoffmann 已提交
552 553 554
qemu-keymap$(EXESUF): LIBS += $(XKBCOMMON_LIBS)
qemu-keymap$(EXESUF): QEMU_CFLAGS += $(XKBCOMMON_CFLAGS)

555 556 557 558 559 560 561 562 563 564 565
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 \
566
qga/qapi-generated/qga-qapi-commands.h qga/qapi-generated/qga-qapi-commands.c \
567 568 569
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 已提交
570
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
571 572 573
		-o qga/qapi-generated -p "qga-" $<, \
		"GEN","$(@:%-timestamp=%)")
	@>$@
574

E
Eric Blake 已提交
575 576 577 578
qapi-modules = $(SRC_PATH)/qapi/qapi-schema.json \
               $(QAPI_MODULES:%=$(SRC_PATH)/qapi/%.json)

$(GENERATED_QAPI_FILES): qapi-gen-timestamp ;
579
qapi-gen-timestamp: $(qapi-modules) $(qapi-py)
M
Matthias Maier 已提交
580
	$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
581
		-o "qapi" -b $<, \
582 583
		"GEN","$(@:%-timestamp=%)")
	@>$@
584

585
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h)
586
$(qga-obj-y): $(QGALIB_GEN)
587

588
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
589
	$(call LINK, $^)
M
Michael Roth 已提交
590

591 592 593
ifdef QEMU_GA_MSI_ENABLED
QEMU_GA_MSI=qemu-ga-$(ARCH).msi

594
msi: $(QEMU_GA_MSI)
595

596
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
597 598 599

$(QEMU_GA_MSI): config-host.mak

600 601
$(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)" \
602
	wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
603 604
else
msi:
605
	@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
606 607
endif

608 609 610 611 612
ifneq ($(EXESUF),)
.PHONY: qemu-ga
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
endif

613 614
elf2dmp$(EXESUF): LIBS += $(CURL_LIBS)
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
V
Viktor Prutyanov 已提交
615 616
	$(call LINK, $^)

617
ifdef CONFIG_IVSHMEM
618
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
619
	$(call LINK, $^)
620
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
621
	$(call LINK, $^)
622
endif
623
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) libvhost-user.a
624
	$(call LINK, $^)
625 626
vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
	$(call LINK, $^)
627 628

rdmacm-mux$(EXESUF): LIBS += "-libumad"
629 630
rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
	$(call LINK, $^)
631

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

635 636 637 638 639 640 641 642 643 644
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

645 646 647
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))), \
648
	"GEN","$@")
649

650 651 652 653 654 655 656 657
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

658
clean:
659
# avoid old build problems by removing potentially incorrect old files
660
	rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
661
	rm -f qemu-options.def
662
	rm -f *.msi
663 664 665 666 667
	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 {} +
668
	rm -f $(edk2-decompressed)
669
	rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga$(EXESUF) TAGS cscope.* *.pod *~ */*~
P
Paolo Bonzini 已提交
670
	rm -f fsdev/*.pod scsi/*.pod
B
Blue Swirl 已提交
671
	rm -f qemu-img-cmds.h
672
	rm -f ui/shader/*-vert.h ui/shader/*-frag.h
673
	@# May not be present in generated-files-y
674 675
	rm -f trace/generated-tracers-dtrace.dtrace*
	rm -f trace/generated-tracers-dtrace.h*
676
	rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
677
	rm -f qapi-gen-timestamp
678
	rm -rf qga/qapi-generated
679
	for d in $(ALL_SUBDIRS); do \
M
Magnus Damm 已提交
680
	if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
B
bellard 已提交
681
        done
682
	rm -f config-all-devices.mak
683

684 685 686 687 688 689 690
VERSION ?= $(shell cat VERSION)

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

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

691 692 693 694 695 696 697 698 699 700 701
# 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

702
define clean-manual =
703 704
rm -rf $(MANUAL_BUILDDIR)/$1/_static
rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
705 706
endef

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

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

T
ths 已提交
742
ifdef INSTALL_BLOBS
743
BLOBS=bios.bin bios-256k.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
744
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
745
vgabios-ramfb.bin vgabios-bochs-display.bin \
746
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
747 748
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
749 750
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
G
Gerd Hoffmann 已提交
751
efi-e1000e.rom efi-vmxnet3.rom \
B
BALATON Zoltan 已提交
752
bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
753
multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
754
s390-ccw.img s390-netboot.img \
755
spapr-rtas.bin slof.bin skiboot.lid \
756
palcode-clipper \
757
u-boot.e500 u-boot-sam460-20100605.bin \
758
qemu_vga.ndrv \
759
edk2-licenses.txt \
760
hppa-firmware.img
761 762 763

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 已提交
764 765
else
BLOBS=
766
DESCS=
T
ths 已提交
767 768
endif

769 770
# Note that we manually filter-out the non-Sphinx documentation which
# is currently built into the docs/interop directory in the build tree.
771
define install-manual =
772
for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
773
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
774 775 776 777 778 779 780
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)
781
	$(call install-manual,specs)
782 783

install-doc: $(DOCS) install-sphinxdocs
784
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
785
	$(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
786
	$(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
787 788
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
789
ifdef CONFIG_POSIX
790
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
791
	$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
792
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
793
	$(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
794
	$(INSTALL_DATA) docs/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
795
	$(INSTALL_DATA) docs/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
796 797
ifneq ($(TOOLS),)
	$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
798 799
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
	$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
800
endif
801 802 803
ifdef CONFIG_TRACE_SYSTEMTAP
	$(INSTALL_DATA) scripts/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
endif
M
Marc-André Lureau 已提交
804 805
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
806 807 808
	$(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 已提交
809
endif
810
endif
811 812 813 814
ifdef CONFIG_VIRTFS
	$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
	$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
endif
815 816 817 818

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

819 820 821 822 823 824 825
install-localstatedir:
ifdef CONFIG_POSIX
ifneq (,$(findstring qemu-ga,$(TOOLS)))
	$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
endif
endif

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

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

F
Fam Zheng 已提交
899 900
.PHONY: ctags
ctags:
901
	rm -f tags
F
Fam Zheng 已提交
902 903
	find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +

A
Alexandre Bique 已提交
904
.PHONY: TAGS
905
TAGS:
906
	rm -f TAGS
D
David Gibson 已提交
907
	find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
908

B
bellard 已提交
909
cscope:
F
Fam Zheng 已提交
910 911 912
	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 已提交
913

914 915 916 917 918
# 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 $< > $@,\
919
		"VERT","$@")
920 921 922 923 924

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 $< > $@,\
925
		"FRAG","$@")
926

927
ui/shader.o: $(SRC_PATH)/ui/shader.c \
G
Gerd Hoffmann 已提交
928 929 930
	ui/shader/texture-blit-vert.h \
	ui/shader/texture-blit-flip-vert.h \
	ui/shader/texture-blit-frag.h
931

B
bellard 已提交
932
# documentation
933
MAKEINFO=makeinfo
934 935
MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
936
TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
937
TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
938

939 940 941 942 943
docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
	$(call quiet-command,(\
		echo "@set VERSION $(VERSION)" && \
		echo "@set CONFDIR $(qemu_confdir)" \
	)> $@,"GEN","$@")
944

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

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

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

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

959 960 961 962
# 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
963
sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html $(MANUAL_BUILDDIR)/interop/index.html $(MANUAL_BUILDDIR)/specs/index.html
964 965

# Canned command to build a single manual
966
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")
967 968 969
# 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

970
$(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
971 972
	$(call build-manual,devel)

973
$(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
974 975
	$(call build-manual,interop)

976 977 978
$(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
	$(call build-manual,specs)

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

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

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

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

991
docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
992
	@cp -p $< $@
993

994 995
docs/interop/qemu-ga-qapi.texi: qga/qapi-generated/qga-qapi-doc.texi
	@cp -p $< $@
996

997
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
998
qemu.1: qemu-option-trace.texi
999
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
1000
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
1001
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
M
Marc-André Lureau 已提交
1002
qemu-ga.8: qemu-ga.texi
1003
docs/qemu-block-drivers.7: docs/qemu-block-drivers.texi
1004
docs/qemu-cpu-models.7: docs/qemu-cpu-models.texi
1005
scripts/qemu-trace-stap.1: scripts/qemu-trace-stap.texi
M
Marc-André Lureau 已提交
1006

1007
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
1008 1009 1010
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
1011

1012
qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
1013
	qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
1014
	qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
1015
	qemu-monitor-info.texi docs/qemu-block-drivers.texi \
1016
	docs/qemu-cpu-models.texi docs/security.texi
1017

1018 1019 1020 1021
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
1022

1023 1024 1025 1026
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
1027

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

1030 1031 1032 1033 1034
# Reports/Analysis

%/coverage-report.html:
	@mkdir -p $*
	$(call quiet-command,\
1035 1036 1037
		gcovr -r $(SRC_PATH) \
		$(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
		 --object-directory $(BUILD_DIR) \
1038
		-p --html --html-details -o $@, \
1039 1040 1041 1042
		"GEN", "coverage-report.html")

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

1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
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 已提交
1067
	$(MAKE) install prefix=${INSTDIR}
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
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)" \
1092
                -DDISPLAYVERSION="$(VERSION)" \
1093 1094 1095 1096 1097 1098 1099
                $(SRC_PATH)/qemu.nsi
	rm -r ${INSTDIR}
ifdef SIGNCODE
	$(SIGNCODE) $(INSTALLER)
endif # SIGNCODE
endif # CONFIG_WIN

1100 1101
# Add a dependency on the generated files, so that they are always
# rebuilt before other object files
1102
ifneq ($(wildcard config-host.mak),)
F
Fam Zheng 已提交
1103
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
1104
Makefile: $(generated-files-y)
1105
endif
1106
endif
1107

1108 1109 1110 1111
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
	$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
	$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)

B
bellard 已提交
1112
# Include automatically generated dependency files
1113 1114
# Dependencies in Makefile.objs files come from our recursive subdir rules
-include $(wildcard *.d tests/*.d)
F
Fam Zheng 已提交
1115 1116

include $(SRC_PATH)/tests/docker/Makefile.include
F
Fam Zheng 已提交
1117
include $(SRC_PATH)/tests/vm/Makefile.include
1118 1119 1120 1121 1122

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