2006-05-14 14:07:53 +02:00
|
|
|
# Makefile for QEMU.
|
|
|
|
|
2019-05-26 16:47:47 +02:00
|
|
|
ifneq ($(words $(subst :, ,$(CURDIR))), 1)
|
|
|
|
$(error main directory cannot contain spaces nor colons)
|
|
|
|
endif
|
|
|
|
|
2011-09-16 21:50:43 +02:00
|
|
|
# Always point to the root of the build tree (needs GNU make).
|
|
|
|
BUILD_DIR=$(CURDIR)
|
2011-09-15 22:45:35 +02:00
|
|
|
|
2015-05-22 07:35:07 +02:00
|
|
|
# Before including a proper config-host.mak, assume we are in the source tree
|
|
|
|
SRC_PATH=.
|
|
|
|
|
2017-11-21 04:22:47 +01:00
|
|
|
UNCHECKED_GOALS := %clean TAGS cscope ctags dist \
|
|
|
|
html info pdf txt \
|
2018-01-04 17:05:08 +01:00
|
|
|
help check-help print-% \
|
2019-05-31 08:43:41 +02:00
|
|
|
docker docker-% vm-help vm-test vm-build-%
|
2015-05-22 07:35:07 +02:00
|
|
|
|
2018-01-04 17:05:08 +01:00
|
|
|
print-%:
|
|
|
|
@echo '$*=$($*)'
|
|
|
|
|
2012-03-06 19:50:38 +01:00
|
|
|
# All following code might depend on configuration variables
|
2009-04-15 16:42:57 +02:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2009-05-19 17:17:58 +02:00
|
|
|
# Put the all: rule here so that config-host.mak can contain dependencies.
|
2012-07-09 20:36:36 +02:00
|
|
|
all:
|
2006-04-16 14:41:07 +02:00
|
|
|
include config-host.mak
|
2012-10-19 15:54:23 +02:00
|
|
|
|
2017-09-29 12:11:56 +02:00
|
|
|
git-submodule-update:
|
|
|
|
|
|
|
|
.PHONY: git-submodule-update
|
|
|
|
|
2017-11-06 12:08:14 +01:00
|
|
|
git_module_status := $(shell \
|
|
|
|
cd '$(SRC_PATH)' && \
|
|
|
|
GIT="$(GIT)" ./scripts/git-submodule.sh status $(GIT_SUBMODULES); \
|
|
|
|
echo $$?; \
|
|
|
|
)
|
2017-09-29 12:11:56 +02:00
|
|
|
|
|
|
|
ifeq (1,$(git_module_status))
|
2017-10-26 14:52:26 +02:00
|
|
|
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
|
2017-09-29 12:11:56 +02:00
|
|
|
git-submodule-update:
|
|
|
|
$(call quiet-command, \
|
2017-10-20 16:02:43 +02:00
|
|
|
(cd $(SRC_PATH) && GIT="$(GIT)" ./scripts/git-submodule.sh update $(GIT_SUBMODULES)), \
|
2017-09-29 12:11:56 +02:00
|
|
|
"GIT","$(GIT_SUBMODULES)")
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-09-29 12:11:58 +02:00
|
|
|
.git-submodule-status: git-submodule-update config-host.mak
|
2017-09-29 12:11:56 +02:00
|
|
|
|
2012-10-19 15:54:23 +02:00
|
|
|
# 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 \
|
2017-11-21 10:55:10 +01:00
|
|
|
"$(MAKE) distclean && rm -rf *-linux-user *-softmmu" in your source tree)
|
2012-10-19 15:54:23 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-07-04 08:30:11 +02:00
|
|
|
CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
|
|
|
|
CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
|
2017-03-16 21:01:50 +01:00
|
|
|
CONFIG_XEN := $(CONFIG_XEN_BACKEND)
|
2013-04-16 10:50:38 +02:00
|
|
|
CONFIG_ALL=y
|
|
|
|
-include config-all-devices.mak
|
|
|
|
-include config-all-disas.mak
|
|
|
|
|
2018-12-14 09:47:54 +01:00
|
|
|
config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios $(SRC_PATH)/VERSION
|
2009-10-07 02:40:59 +02:00
|
|
|
@echo $@ is out-of-date, running configure
|
2019-05-28 10:23:05 +02:00
|
|
|
@./config.status
|
2018-10-21 19:56:29 +02:00
|
|
|
|
|
|
|
# Force configure to re-run if the API symbols are updated
|
|
|
|
ifeq ($(CONFIG_PLUGIN),y)
|
|
|
|
config-host.mak: $(SRC_PATH)/plugins/qemu-plugins.symbols
|
|
|
|
endif
|
|
|
|
|
2009-04-15 16:42:57 +02:00
|
|
|
else
|
|
|
|
config-host.mak:
|
2015-05-22 07:35:07 +02:00
|
|
|
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
|
2009-04-15 16:42:57 +02:00
|
|
|
@echo "Please call configure before running make!"
|
|
|
|
@exit 1
|
|
|
|
endif
|
2012-09-16 22:07:13 +02:00
|
|
|
endif
|
2003-02-19 00:35:48 +01:00
|
|
|
|
2016-06-01 06:25:16 +02:00
|
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
|
2019-07-18 12:24:29 +02:00
|
|
|
# lor is defined in rules.mak
|
2019-04-01 16:12:22 +02:00
|
|
|
CONFIG_BLOCK := $(call lor,$(CONFIG_SOFTMMU),$(CONFIG_TOOLS))
|
|
|
|
|
2019-03-07 15:26:47 +01:00
|
|
|
# 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))
|
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y = qemu-version.h config-host.h qemu-options.def
|
2018-11-16 21:00:16 +01:00
|
|
|
|
|
|
|
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)
|
2019-02-14 16:22:38 +01:00
|
|
|
GENERATED_QAPI_FILES += qapi/qapi-emit-events.h qapi/qapi-emit-events.c
|
2018-11-16 21:00:16 +01:00
|
|
|
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
|
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y += $(GENERATED_QAPI_FILES)
|
2012-12-14 20:13:09 +01:00
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y += trace/generated-tcg-tracers.h
|
2014-05-30 14:12:13 +02:00
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y += trace/generated-helpers-wrappers.h
|
|
|
|
generated-files-y += trace/generated-helpers.h
|
|
|
|
generated-files-y += trace/generated-helpers.c
|
2014-05-30 14:11:50 +02:00
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.h
|
|
|
|
generated-files-$(CONFIG_TRACE_UST) += trace-ust-all.c
|
2014-01-30 04:47:56 +01:00
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y += module_block.h
|
2016-08-12 15:27:02 +02:00
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
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
|
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-y += $(TRACE_HEADERS)
|
|
|
|
generated-files-y += $(TRACE_SOURCES)
|
|
|
|
generated-files-y += $(BUILD_DIR)/trace-events-all
|
|
|
|
generated-files-y += .git-submodule-status
|
2017-01-25 17:14:15 +01:00
|
|
|
|
|
|
|
trace-group-name = $(shell dirname $1 | sed -e 's/[^a-zA-Z0-9]/_/g')
|
|
|
|
|
2017-03-15 13:34:21 +01:00
|
|
|
tracetool-y = $(SRC_PATH)/scripts/tracetool.py
|
|
|
|
tracetool-y += $(shell find $(SRC_PATH)/scripts/tracetool -name "*.py")
|
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
%/trace.h: %/trace.h-timestamp
|
|
|
|
@cmp $< $@ >/dev/null 2>&1 || cp $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
%/trace.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
%/trace.c-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
%/trace-ust.h-timestamp: $(SRC_PATH)/%/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
trace-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
trace-root.c-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
trace-ust-root.h-timestamp: $(SRC_PATH)/trace-events $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
trace-ust-all.h-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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 $< $@
|
2019-01-29 03:53:43 +01:00
|
|
|
trace-ust-all.c-timestamp: $(trace-events-files) $(tracetool-y) $(BUILD_DIR)/config-host.mak
|
2017-01-25 17:14:15 +01:00
|
|
|
$(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
|
|
|
|
|
2017-09-29 12:11:58 +02:00
|
|
|
KEYCODEMAP_GEN = $(SRC_PATH)/ui/keycodemapdb/tools/keymap-gen
|
|
|
|
KEYCODEMAP_CSV = $(SRC_PATH)/ui/keycodemapdb/data/keymaps.csv
|
|
|
|
|
|
|
|
KEYCODEMAP_FILES = \
|
2018-01-17 17:47:15 +01:00
|
|
|
ui/input-keymap-atset1-to-qcode.c \
|
2017-09-29 12:11:59 +02:00
|
|
|
ui/input-keymap-linux-to-qcode.c \
|
2018-01-17 17:41:15 +01:00
|
|
|
ui/input-keymap-qcode-to-atset1.c \
|
|
|
|
ui/input-keymap-qcode-to-atset2.c \
|
|
|
|
ui/input-keymap-qcode-to-atset3.c \
|
2018-01-17 17:41:17 +01:00
|
|
|
ui/input-keymap-qcode-to-linux.c \
|
2017-09-29 12:11:59 +02:00
|
|
|
ui/input-keymap-qcode-to-qnum.c \
|
2018-01-17 17:41:16 +01:00
|
|
|
ui/input-keymap-qcode-to-sun.c \
|
2017-09-29 12:11:59 +02:00
|
|
|
ui/input-keymap-qnum-to-qcode.c \
|
2018-01-17 17:47:14 +01:00
|
|
|
ui/input-keymap-usb-to-qcode.c \
|
2018-01-17 17:47:15 +01:00
|
|
|
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 \
|
2018-06-14 01:51:56 +02:00
|
|
|
ui/input-keymap-osx-to-qcode.c \
|
2017-09-29 12:11:58 +02:00
|
|
|
$(NULL)
|
|
|
|
|
2019-04-01 16:12:19 +02:00
|
|
|
generated-files-$(CONFIG_SOFTMMU) += $(KEYCODEMAP_FILES)
|
2017-09-29 12:11:58 +02:00
|
|
|
|
|
|
|
ui/input-keymap-%.c: $(KEYCODEMAP_GEN) $(KEYCODEMAP_CSV) $(SRC_PATH)/ui/Makefile.objs
|
|
|
|
$(call quiet-command,\
|
2018-01-19 08:52:27 +01:00
|
|
|
stem=$* && src=$${stem%-to-*} dst=$${stem#*-to-} && \
|
2017-09-29 12:11:58 +02:00
|
|
|
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
|
|
|
|
|
2019-03-08 01:19:35 +01:00
|
|
|
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",$<)
|
|
|
|
|
2009-10-06 21:11:15 +02:00
|
|
|
# Don't try to regenerate Makefile or configure
|
|
|
|
# We don't generate any of them
|
|
|
|
Makefile: ;
|
|
|
|
configure: ;
|
|
|
|
|
2017-01-13 15:41:32 +01:00
|
|
|
.PHONY: all clean cscope distclean html info install install-doc \
|
2017-11-21 15:25:38 +01:00
|
|
|
pdf txt recurse-all dist msi FORCE
|
2006-05-14 14:07:53 +02:00
|
|
|
|
2012-05-29 11:49:50 +02:00
|
|
|
$(call set-vpath, $(SRC_PATH))
|
2007-11-18 22:12:37 +01:00
|
|
|
|
2009-08-03 14:47:06 +02:00
|
|
|
LIBS+=-lz $(LIBS_TOOLS)
|
2009-07-27 16:12:51 +02:00
|
|
|
|
2019-05-24 15:09:42 +02:00
|
|
|
vhost-user-json-y =
|
|
|
|
HELPERS-y =
|
|
|
|
|
2018-06-05 18:09:58 +02:00
|
|
|
HELPERS-$(call land,$(CONFIG_SOFTMMU),$(CONFIG_LINUX)) = qemu-bridge-helper$(EXESUF)
|
2012-01-26 15:42:24 +01:00
|
|
|
|
2019-08-27 10:08:24 +02:00
|
|
|
ifeq ($(CONFIG_LINUX)$(CONFIG_VIRGL)$(CONFIG_GBM)$(CONFIG_TOOLS),yyyy)
|
2019-05-24 15:09:42 +02:00
|
|
|
HELPERS-y += vhost-user-gpu$(EXESUF)
|
|
|
|
vhost-user-json-y += contrib/vhost-user-gpu/50-qemu-gpu.json
|
|
|
|
endif
|
|
|
|
|
2019-09-19 17:59:57 +02:00
|
|
|
# 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
|
|
|
|
|
2006-04-23 19:57:59 +02:00
|
|
|
ifdef BUILD_DOCS
|
2019-09-19 17:59:57 +02:00
|
|
|
DOCS=qemu-doc.html qemu-doc.txt qemu.1 qemu-img.1 qemu-nbd.8 $(MANUAL_BUILDDIR)/interop/qemu-ga.8
|
2017-06-06 16:55:19 +02:00
|
|
|
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
|
2017-09-08 10:39:41 +02:00
|
|
|
DOCS+=docs/qemu-block-drivers.7
|
2018-06-27 18:01:03 +02:00
|
|
|
DOCS+=docs/qemu-cpu-models.7
|
2012-02-24 09:30:42 +01:00
|
|
|
ifdef CONFIG_VIRTFS
|
2011-12-14 09:28:47 +01:00
|
|
|
DOCS+=fsdev/virtfs-proxy-helper.1
|
2012-02-24 09:30:42 +01:00
|
|
|
endif
|
2019-01-23 13:00:16 +01:00
|
|
|
ifdef CONFIG_TRACE_SYSTEMTAP
|
|
|
|
DOCS+=scripts/qemu-trace-stap.1
|
|
|
|
endif
|
2006-04-23 19:57:59 +02:00
|
|
|
else
|
|
|
|
DOCS=
|
|
|
|
endif
|
2003-05-25 18:41:18 +02:00
|
|
|
|
2018-01-23 17:47:17 +01:00
|
|
|
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet) BUILD_DIR=$(BUILD_DIR)
|
2019-01-23 07:56:01 +01:00
|
|
|
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(filter %-softmmu, $(TARGET_DIRS)))
|
|
|
|
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %.d, $(SUBDIR_DEVICES_MAK))
|
2009-10-07 02:41:02 +02:00
|
|
|
|
2012-09-14 19:02:30 +02:00
|
|
|
ifeq ($(SUBDIR_DEVICES_MAK),)
|
2019-03-13 11:51:14 +01:00
|
|
|
config-all-devices.mak: config-host.mak
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,echo '# no devices' > $@,"GEN","$@")
|
2012-09-14 19:02:30 +02:00
|
|
|
else
|
2019-03-13 11:51:14 +01:00
|
|
|
config-all-devices.mak: $(SUBDIR_DEVICES_MAK) config-host.mak
|
2013-04-03 17:53:21 +02:00
|
|
|
$(call quiet-command, sed -n \
|
|
|
|
's|^\([^=]*\)=\(.*\)$$|\1:=$$(findstring y,$$(\1)\2)|p' \
|
|
|
|
$(SUBDIR_DEVICES_MAK) | sort -u > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2012-09-14 19:02:30 +02:00
|
|
|
endif
|
2009-10-07 02:41:02 +02:00
|
|
|
|
2010-11-26 19:47:45 +01:00
|
|
|
-include $(SUBDIR_DEVICES_MAK_DEP)
|
|
|
|
|
2019-01-23 07:56:01 +01:00
|
|
|
# This has to be kept in sync with Kconfig.host.
|
|
|
|
MINIKCONF_ARGS = \
|
2019-01-23 07:56:17 +01:00
|
|
|
$(CONFIG_MINIKCONF_MODE) \
|
2019-05-10 10:11:59 +02:00
|
|
|
$@ $*/config-devices.mak.d $< $(MINIKCONF_INPUTS) \
|
2019-01-23 07:56:01 +01:00
|
|
|
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) \
|
2019-08-15 15:13:06 +02:00
|
|
|
CONFIG_VHOST_KERNEL=$(CONFIG_VHOST_KERNEL) \
|
2019-01-23 07:56:01 +01:00
|
|
|
CONFIG_VIRTFS=$(CONFIG_VIRTFS) \
|
2019-03-14 14:09:09 +01:00
|
|
|
CONFIG_LINUX=$(CONFIG_LINUX) \
|
|
|
|
CONFIG_PVRDMA=$(CONFIG_PVRDMA)
|
2019-01-23 07:56:01 +01:00
|
|
|
|
2019-11-03 23:12:24 +01:00
|
|
|
MINIKCONF_INPUTS = $(SRC_PATH)/Kconfig.host $(SRC_PATH)/hw/Kconfig \
|
|
|
|
$(wildcard $(SRC_PATH)/hw/*/Kconfig)
|
2019-01-23 07:56:01 +01:00
|
|
|
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")
|
2015-02-19 08:48:46 +01:00
|
|
|
$(call quiet-command, if test -f $@; then \
|
2010-10-02 16:28:08 +02:00
|
|
|
if cmp -s $@.old $@; then \
|
2010-11-26 19:47:45 +01:00
|
|
|
mv $@.tmp $@; \
|
|
|
|
cp -p $@ $@.old; \
|
2009-12-20 15:39:03 +01:00
|
|
|
else \
|
|
|
|
if test -f $@.old; then \
|
|
|
|
echo "WARNING: $@ (user modified) out of date.";\
|
|
|
|
else \
|
|
|
|
echo "WARNING: $@ out of date.";\
|
|
|
|
fi; \
|
2017-11-21 10:55:10 +01:00
|
|
|
echo "Run \"$(MAKE) defconfig\" to regenerate."; \
|
2009-12-20 15:39:03 +01:00
|
|
|
rm $@.tmp; \
|
|
|
|
fi; \
|
2009-11-22 17:25:30 +01:00
|
|
|
else \
|
2009-12-20 15:39:03 +01:00
|
|
|
mv $@.tmp $@; \
|
|
|
|
cp -p $@ $@.old; \
|
2016-10-04 18:27:21 +02:00
|
|
|
fi,"GEN","$@");
|
2009-11-22 17:25:30 +01:00
|
|
|
|
|
|
|
defconfig:
|
|
|
|
rm -f config-all-devices.mak $(SUBDIR_DEVICES_MAK)
|
|
|
|
|
2012-12-21 08:34:49 +01:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
|
|
|
include $(SRC_PATH)/Makefile.objs
|
2014-02-10 07:48:52 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
dummy := $(call unnest-vars,, \
|
|
|
|
stub-obj-y \
|
2015-10-21 14:16:21 +02:00
|
|
|
authz-obj-y \
|
2016-12-12 13:49:01 +01:00
|
|
|
chardev-obj-y \
|
2014-02-10 07:48:52 +01:00
|
|
|
util-obj-y \
|
|
|
|
qga-obj-y \
|
2018-08-29 14:41:25 +02:00
|
|
|
elf2dmp-obj-y \
|
2014-09-08 11:17:48 +02:00
|
|
|
ivshmem-client-obj-y \
|
|
|
|
ivshmem-server-obj-y \
|
2018-12-21 15:40:15 +01:00
|
|
|
rdmacm-mux-obj-y \
|
contrib: add libvhost-user
Add a library to help implementing vhost-user backend (or slave).
Dealing with vhost-user as an application developer isn't so easy: you
have all the trouble with any protocol: validation, unix ancillary data,
shared memory, eventfd, logging, and on top of that you need to deal
with virtio queues, if possible efficiently.
qemu test has a nice vhost-user testing application vhost-user-bridge,
which implements most of vhost-user, and virtio.c which implements
virtqueues manipulation. Based on these two, I tried to make a simple
library, reusable for tests or development of new vhost-user scenarios.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
[Felipe: set used_idx copy on SET_VRING_ADDR and update shadow avail idx
on SET_VRING_BASE]
Signed-off-by: Felipe Franciosi <felipe@nutanix.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
2016-10-18 11:24:04 +02:00
|
|
|
libvhost-user-obj-y \
|
vhost-user-scsi: Introduce a vhost-user-scsi sample application
This commit introduces a vhost-user-scsi backend sample application. It
must be linked with libiscsi and libvhost-user.
To use it, compile with:
$ make vhost-user-scsi
And run as follows:
$ ./vhost-user-scsi -u vus.sock -i iscsi://uri_to_target/
$ qemu-system-x86_64 --enable-kvm -m 512 \
-object memory-backend-file,id=mem,size=512m,share=on,mem-path=guestmem \
-numa node,memdev=mem \
-chardev socket,id=vhost-user-scsi,path=vus.sock \
-device vhost-user-scsi-pci,chardev=vhost-user-scsi \
The application is currently limited at one LUN only and it processes
requests synchronously (therefore only achieving QD1). The purpose of
the code is to show how a backend can be implemented and to test the
vhost-user-scsi Qemu implementation.
If a different instance of this vhost-user-scsi application is executed
at a remote host, a VM can be live migrated to such a host.
Signed-off-by: Felipe Franciosi <felipe@nutanix.com>
Message-Id: <1488479153-21203-5-git-send-email-felipe@nutanix.com>
2017-03-02 19:25:53 +01:00
|
|
|
vhost-user-scsi-obj-y \
|
2018-01-04 02:53:34 +01:00
|
|
|
vhost-user-blk-obj-y \
|
2019-05-14 12:41:26 +02:00
|
|
|
vhost-user-input-obj-y \
|
2019-05-24 15:09:42 +02:00
|
|
|
vhost-user-gpu-obj-y \
|
2014-03-26 19:28:45 +01:00
|
|
|
qga-vss-dll-obj-y \
|
2014-02-10 07:48:52 +01:00
|
|
|
block-obj-y \
|
2014-02-10 07:48:59 +01:00
|
|
|
block-obj-m \
|
2015-09-02 11:57:27 +02:00
|
|
|
crypto-obj-y \
|
2015-09-02 12:18:16 +02:00
|
|
|
qom-obj-y \
|
2015-02-27 17:19:33 +01:00
|
|
|
io-obj-y \
|
2014-02-10 07:48:59 +01:00
|
|
|
common-obj-y \
|
2017-01-25 17:14:15 +01:00
|
|
|
common-obj-m \
|
2019-02-12 17:25:23 +01:00
|
|
|
trace-obj-y)
|
2014-02-10 07:48:52 +01:00
|
|
|
|
2016-06-01 04:23:31 +02:00
|
|
|
include $(SRC_PATH)/tests/Makefile.include
|
2012-12-21 08:34:49 +01:00
|
|
|
|
2019-05-24 15:09:42 +02:00
|
|
|
all: $(DOCS) $(if $(BUILD_DOCS),sphinxdocs) $(TOOLS) $(HELPERS-y) recurse-all modules $(vhost-user-json-y)
|
2006-05-13 18:54:03 +02:00
|
|
|
|
2016-06-01 11:44:21 +02:00
|
|
|
qemu-version.h: FORCE
|
|
|
|
$(call quiet-command, \
|
2019-03-07 15:26:47 +01:00
|
|
|
(printf '#define QEMU_PKGVERSION "$(QEMU_PKGVERSION)"\n'; \
|
|
|
|
printf '#define QEMU_FULL_VERSION "$(FULL_VERSION)"\n'; \
|
2018-02-15 12:06:47 +01:00
|
|
|
) > $@.tmp)
|
2017-02-15 03:40:30 +01:00
|
|
|
$(call quiet-command, if ! cmp -s $@ $@.tmp; then \
|
|
|
|
mv $@.tmp $@; \
|
|
|
|
else \
|
|
|
|
rm $@.tmp; \
|
|
|
|
fi)
|
2016-06-01 11:44:21 +02:00
|
|
|
|
2009-10-07 02:40:58 +02:00
|
|
|
config-host.h: config-host.h-timestamp
|
|
|
|
config-host.h-timestamp: config-host.mak
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-options.def: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
|
2009-10-07 02:40:58 +02:00
|
|
|
|
2019-05-28 10:23:08 +02:00
|
|
|
TARGET_DIRS_RULES := $(foreach t, all clean install, $(addsuffix /$(t), $(TARGET_DIRS)))
|
2013-02-21 16:26:47 +01:00
|
|
|
|
2019-05-28 10:23:08 +02:00
|
|
|
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
|
2019-11-08 12:45:30 +01:00
|
|
|
ifdef DECOMPRESS_EDK2_BLOBS
|
2019-05-28 10:23:08 +02:00
|
|
|
$(SOFTMMU_ALL_RULES): $(edk2-decompressed)
|
2019-11-08 12:45:30 +01:00
|
|
|
endif
|
2008-05-28 18:44:57 +02:00
|
|
|
|
2019-05-28 10:23:08 +02:00
|
|
|
.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 $@),)
|
2006-05-13 15:55:08 +02:00
|
|
|
|
2013-04-18 06:47:31 +02:00
|
|
|
DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
|
2013-06-21 15:00:17 +02:00
|
|
|
DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS)
|
|
|
|
DTC_CPPFLAGS=-I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
|
2013-04-18 06:47:31 +02:00
|
|
|
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
.PHONY: dtc/all
|
|
|
|
dtc/all: .git-submodule-status dtc/libfdt dtc/tests
|
2013-06-21 15:00:17 +02:00
|
|
|
$(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,)
|
2013-04-18 06:47:31 +02:00
|
|
|
|
2017-10-18 20:40:23 +02:00
|
|
|
dtc/%: .git-submodule-status
|
2018-04-16 01:05:22 +02:00
|
|
|
@mkdir -p $@
|
2013-04-18 06:47:31 +02:00
|
|
|
|
2017-09-28 18:01:23 +02:00
|
|
|
# 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
|
|
|
|
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
.PHONY: capstone/all
|
|
|
|
capstone/all: .git-submodule-status
|
2017-11-08 02:10:46 +01:00
|
|
|
$(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))
|
2017-09-28 18:01:23 +02:00
|
|
|
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
.PHONY: slirp/all
|
|
|
|
slirp/all: .git-submodule-status
|
2019-09-19 15:07:36 +02:00
|
|
|
$(call quiet-command,$(MAKE) -C $(SRC_PATH)/slirp \
|
|
|
|
BUILD_DIR="$(BUILD_DIR)/slirp" \
|
|
|
|
PKG_CONFIG="$(PKG_CONFIG)" \
|
|
|
|
CC="$(CC)" AR="$(AR)" LD="$(LD)" RANLIB="$(RANLIB)" \
|
|
|
|
CFLAGS="$(QEMU_CFLAGS) $(CFLAGS)" LDFLAGS="$(LDFLAGS)")
|
2019-02-12 17:25:23 +01:00
|
|
|
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
# 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
|
|
|
|
|
2019-05-28 10:23:08 +02:00
|
|
|
$(filter %/all, $(TARGET_DIRS_RULES)): libqemuutil.a $(common-obj-y) \
|
2019-07-29 15:55:47 +02:00
|
|
|
$(qom-obj-y)
|
2009-09-27 18:26:02 +02:00
|
|
|
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
ROM_DIRS = $(addprefix pc-bios/, $(ROMS))
|
2019-05-28 10:23:08 +02:00
|
|
|
ROM_DIRS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROM_DIRS)))
|
2016-08-05 10:23:46 +02:00
|
|
|
# Only keep -O and -g cflags
|
2019-05-28 10:23:08 +02:00
|
|
|
.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 $@),)
|
2009-07-31 14:18:32 +02:00
|
|
|
|
2019-07-09 16:38:01 +02:00
|
|
|
.PHONY: recurse-all recurse-clean recurse-install
|
2019-05-28 10:23:08 +02:00
|
|
|
recurse-all: $(addsuffix /all, $(TARGET_DIRS) $(ROM_DIRS))
|
|
|
|
recurse-clean: $(addsuffix /clean, $(TARGET_DIRS) $(ROM_DIRS))
|
|
|
|
recurse-install: $(addsuffix /install, $(TARGET_DIRS))
|
2019-07-12 07:59:35 +02:00
|
|
|
$(addsuffix /install, $(TARGET_DIRS)): all
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2016-11-08 08:05:13 +01:00
|
|
|
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
|
2013-02-25 23:31:13 +01:00
|
|
|
|
2016-11-08 08:05:13 +01:00
|
|
|
Makefile: $(version-obj-y)
|
2012-11-16 18:35:27 +01:00
|
|
|
|
|
|
|
######################################################################
|
2012-12-20 15:40:20 +01:00
|
|
|
# Build libraries
|
2012-11-16 18:35:27 +01:00
|
|
|
|
2017-09-19 16:20:31 +02:00
|
|
|
libqemuutil.a: $(util-obj-y) $(trace-obj-y) $(stub-obj-y)
|
2019-02-28 09:53:52 +01:00
|
|
|
libvhost-user.a: $(libvhost-user-obj-y) $(util-obj-y) $(stub-obj-y)
|
2012-11-16 18:35:27 +01:00
|
|
|
|
2011-05-15 10:51:28 +02:00
|
|
|
######################################################################
|
2007-11-07 20:24:02 +01:00
|
|
|
|
2017-09-19 16:20:31 +02:00
|
|
|
COMMON_LDADDS = libqemuutil.a
|
2017-01-25 17:14:15 +01:00
|
|
|
|
2010-01-20 20:54:18 +01:00
|
|
|
qemu-img.o: qemu-img-cmds.h
|
2009-06-07 01:42:17 +02:00
|
|
|
|
2015-10-21 14:16:21 +02:00
|
|
|
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)
|
2009-04-05 20:41:23 +02:00
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o $(COMMON_LDADDS)
|
2012-01-26 15:42:24 +01:00
|
|
|
|
2017-10-05 17:33:28 +02:00
|
|
|
qemu-keymap$(EXESUF): qemu-keymap.o ui/input-keymap.o $(COMMON_LDADDS)
|
|
|
|
|
2018-09-25 09:56:42 +02:00
|
|
|
qemu-edid$(EXESUF): qemu-edid.o hw/display/edid-generate.o $(COMMON_LDADDS)
|
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o $(COMMON_LDADDS)
|
2011-12-14 09:28:42 +01:00
|
|
|
|
2015-10-21 14:16:21 +02:00
|
|
|
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)
|
2017-08-22 06:50:55 +02:00
|
|
|
ifdef CONFIG_MPATH
|
|
|
|
scsi/qemu-pr-helper$(EXESUF): LIBS += -ludev -lmultipath -lmpathpersist
|
|
|
|
endif
|
2017-08-22 06:50:18 +02:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-img-cmds.h: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"GEN","$@")
|
2009-06-07 01:42:17 +02:00
|
|
|
|
2011-08-11 22:38:12 +02:00
|
|
|
qemu-ga$(EXESUF): LIBS = $(LIBS_QGA)
|
2012-07-28 21:11:24 +02:00
|
|
|
qemu-ga$(EXESUF): QEMU_CFLAGS += -I qga/qapi-generated
|
2011-07-19 21:50:44 +02:00
|
|
|
|
2017-10-05 17:33:28 +02:00
|
|
|
qemu-keymap$(EXESUF): LIBS += $(XKBCOMMON_LIBS)
|
|
|
|
qemu-keymap$(EXESUF): QEMU_CFLAGS += $(XKBCOMMON_CFLAGS)
|
|
|
|
|
2019-10-18 09:43:44 +02:00
|
|
|
qapi-py = $(SRC_PATH)/scripts/qapi/__init__.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/commands.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/common.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/doc.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/error.py \
|
2018-02-26 20:48:58 +01:00
|
|
|
$(SRC_PATH)/scripts/qapi/events.py \
|
2019-10-18 09:43:44 +02:00
|
|
|
$(SRC_PATH)/scripts/qapi/expr.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/gen.py \
|
2018-02-26 20:48:58 +01:00
|
|
|
$(SRC_PATH)/scripts/qapi/introspect.py \
|
2019-10-18 09:43:44 +02:00
|
|
|
$(SRC_PATH)/scripts/qapi/parser.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/schema.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/source.py \
|
2018-02-26 20:48:58 +01:00
|
|
|
$(SRC_PATH)/scripts/qapi/types.py \
|
|
|
|
$(SRC_PATH)/scripts/qapi/visit.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 \
|
2018-02-11 10:36:05 +01:00
|
|
|
qga/qapi-generated/qga-qapi-commands.h qga/qapi-generated/qga-qapi-commands.c \
|
2018-02-26 20:48:58 +01:00
|
|
|
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)
|
2018-06-18 19:59:58 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
|
2018-02-26 20:48:58 +01:00
|
|
|
-o qga/qapi-generated -p "qga-" $<, \
|
|
|
|
"GEN","$(@:%-timestamp=%)")
|
|
|
|
@>$@
|
2011-07-19 22:41:55 +02:00
|
|
|
|
2018-11-16 21:00:16 +01:00
|
|
|
qapi-modules = $(SRC_PATH)/qapi/qapi-schema.json \
|
|
|
|
$(QAPI_MODULES:%=$(SRC_PATH)/qapi/%.json)
|
|
|
|
|
|
|
|
$(GENERATED_QAPI_FILES): qapi-gen-timestamp ;
|
2018-02-26 20:48:58 +01:00
|
|
|
qapi-gen-timestamp: $(qapi-modules) $(qapi-py)
|
2018-06-18 19:59:58 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-gen.py \
|
2018-02-11 10:36:05 +01:00
|
|
|
-o "qapi" -b $<, \
|
2018-02-26 20:48:58 +01:00
|
|
|
"GEN","$(@:%-timestamp=%)")
|
|
|
|
@>$@
|
2011-09-02 19:34:47 +02:00
|
|
|
|
2018-02-11 10:36:05 +01:00
|
|
|
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qapi-commands.h)
|
2017-07-27 17:45:05 +02:00
|
|
|
$(qga-obj-y): $(QGALIB_GEN)
|
2011-08-11 22:38:12 +02:00
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
qemu-ga$(EXESUF): $(qga-obj-y) $(COMMON_LDADDS)
|
build: qemu-ga: add 'qemu-ga' build target for w32
Currently POSIX builds rely on 'qemu-ga' target to do qga-only
distributable build. On w32, as with most standalone binary targets,
we rely on 'qemu-ga.exe' target.
Unlike with POSIX, qemu-ga for w32 has a number of related targets
such as VSS DLL and MSI package. We can do the full distributable
qga-only build on w32 with:
make qemu-ga.exe
or:
make msi
To make that work, we tie VSS dependencies onto qemu-ga.exe.
However, in reality the DLL isn't part of the binary, so we use a
filter to pull them out of the LINK recipe, which attempts to link
against prereqs for binary targets. Additionally, it could be argued
that VSS is a separate distributable, and shouldn't be implied by
qemu-ga.exe binary target.
To avoid this, we can tie the VSS dependencies only to the 'msi'
target, but that would make it impossible to do a qga-only build of
the w32 distributable without building the 'msi' package, which was
supported in the past.
An alternative approach is to add a new target to build the whole
distributable. w32 allows us to use the same build target we use
on POSIX, 'qemu-ga', since the current binary-only target on w32
is 'qemu-ga.exe'.
To further simplify the build, we also make 'qemu-ga' build the MSI
package if the appropriate ./configure options are set, making the
full qga-only build the same on both POSIX and w32: `make qemu-ga`
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2015-09-08 01:47:05 +02:00
|
|
|
$(call LINK, $^)
|
2011-07-20 22:19:37 +02:00
|
|
|
|
2015-05-06 13:57:40 +02:00
|
|
|
ifdef QEMU_GA_MSI_ENABLED
|
|
|
|
QEMU_GA_MSI=qemu-ga-$(ARCH).msi
|
|
|
|
|
2015-07-29 19:10:51 +02:00
|
|
|
msi: $(QEMU_GA_MSI)
|
2015-05-06 13:57:40 +02:00
|
|
|
|
build: qemu-ga: add 'qemu-ga' build target for w32
Currently POSIX builds rely on 'qemu-ga' target to do qga-only
distributable build. On w32, as with most standalone binary targets,
we rely on 'qemu-ga.exe' target.
Unlike with POSIX, qemu-ga for w32 has a number of related targets
such as VSS DLL and MSI package. We can do the full distributable
qga-only build on w32 with:
make qemu-ga.exe
or:
make msi
To make that work, we tie VSS dependencies onto qemu-ga.exe.
However, in reality the DLL isn't part of the binary, so we use a
filter to pull them out of the LINK recipe, which attempts to link
against prereqs for binary targets. Additionally, it could be argued
that VSS is a separate distributable, and shouldn't be implied by
qemu-ga.exe binary target.
To avoid this, we can tie the VSS dependencies only to the 'msi'
target, but that would make it impossible to do a qga-only build of
the w32 distributable without building the 'msi' package, which was
supported in the past.
An alternative approach is to add a new target to build the whole
distributable. w32 allows us to use the same build target we use
on POSIX, 'qemu-ga', since the current binary-only target on w32
is 'qemu-ga.exe'.
To further simplify the build, we also make 'qemu-ga' build the MSI
package if the appropriate ./configure options are set, making the
full qga-only build the same on both POSIX and w32: `make qemu-ga`
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2015-09-08 01:47:05 +02:00
|
|
|
$(QEMU_GA_MSI): qemu-ga.exe $(QGA_VSS_PROVIDER)
|
2015-05-06 13:57:40 +02:00
|
|
|
|
|
|
|
$(QEMU_GA_MSI): config-host.mak
|
|
|
|
|
2015-08-26 14:07:16 +02:00
|
|
|
$(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)" \
|
2016-10-04 18:27:21 +02:00
|
|
|
wixl -o $@ $(QEMU_GA_MSI_ARCH) $(QEMU_GA_MSI_WITH_VSS) $(QEMU_GA_MSI_MINGW_DLL_PATH) $<,"WIXL","$@")
|
2015-05-06 13:57:40 +02:00
|
|
|
else
|
|
|
|
msi:
|
2015-08-27 00:05:01 +02:00
|
|
|
@echo "MSI build not configured or dependency resolution failed (reconfigure with --enable-guest-agent-msi option)"
|
2015-05-06 13:57:40 +02:00
|
|
|
endif
|
|
|
|
|
build: qemu-ga: add 'qemu-ga' build target for w32
Currently POSIX builds rely on 'qemu-ga' target to do qga-only
distributable build. On w32, as with most standalone binary targets,
we rely on 'qemu-ga.exe' target.
Unlike with POSIX, qemu-ga for w32 has a number of related targets
such as VSS DLL and MSI package. We can do the full distributable
qga-only build on w32 with:
make qemu-ga.exe
or:
make msi
To make that work, we tie VSS dependencies onto qemu-ga.exe.
However, in reality the DLL isn't part of the binary, so we use a
filter to pull them out of the LINK recipe, which attempts to link
against prereqs for binary targets. Additionally, it could be argued
that VSS is a separate distributable, and shouldn't be implied by
qemu-ga.exe binary target.
To avoid this, we can tie the VSS dependencies only to the 'msi'
target, but that would make it impossible to do a qga-only build of
the w32 distributable without building the 'msi' package, which was
supported in the past.
An alternative approach is to add a new target to build the whole
distributable. w32 allows us to use the same build target we use
on POSIX, 'qemu-ga', since the current binary-only target on w32
is 'qemu-ga.exe'.
To further simplify the build, we also make 'qemu-ga' build the MSI
package if the appropriate ./configure options are set, making the
full qga-only build the same on both POSIX and w32: `make qemu-ga`
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2015-09-08 01:47:05 +02:00
|
|
|
ifneq ($(EXESUF),)
|
|
|
|
.PHONY: qemu-ga
|
|
|
|
qemu-ga: qemu-ga$(EXESUF) $(QGA_VSS_PROVIDER) $(QEMU_GA_MSI)
|
|
|
|
endif
|
|
|
|
|
2018-12-20 02:24:41 +01:00
|
|
|
elf2dmp$(EXESUF): $(elf2dmp-obj-y)
|
2018-08-29 14:41:25 +02:00
|
|
|
$(call LINK, $^)
|
|
|
|
|
2017-07-14 10:33:45 +02:00
|
|
|
ifdef CONFIG_IVSHMEM
|
2017-01-25 17:14:15 +01:00
|
|
|
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) $(COMMON_LDADDS)
|
2014-09-08 11:17:48 +02:00
|
|
|
$(call LINK, $^)
|
2017-01-25 17:14:15 +01:00
|
|
|
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) $(COMMON_LDADDS)
|
2014-09-08 11:17:48 +02:00
|
|
|
$(call LINK, $^)
|
2017-07-14 10:33:45 +02:00
|
|
|
endif
|
2017-09-19 17:25:04 +02:00
|
|
|
vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) libvhost-user.a
|
vhost-user-scsi: Introduce a vhost-user-scsi sample application
This commit introduces a vhost-user-scsi backend sample application. It
must be linked with libiscsi and libvhost-user.
To use it, compile with:
$ make vhost-user-scsi
And run as follows:
$ ./vhost-user-scsi -u vus.sock -i iscsi://uri_to_target/
$ qemu-system-x86_64 --enable-kvm -m 512 \
-object memory-backend-file,id=mem,size=512m,share=on,mem-path=guestmem \
-numa node,memdev=mem \
-chardev socket,id=vhost-user-scsi,path=vus.sock \
-device vhost-user-scsi-pci,chardev=vhost-user-scsi \
The application is currently limited at one LUN only and it processes
requests synchronously (therefore only achieving QD1). The purpose of
the code is to show how a backend can be implemented and to test the
vhost-user-scsi Qemu implementation.
If a different instance of this vhost-user-scsi application is executed
at a remote host, a VM can be live migrated to such a host.
Signed-off-by: Felipe Franciosi <felipe@nutanix.com>
Message-Id: <1488479153-21203-5-git-send-email-felipe@nutanix.com>
2017-03-02 19:25:53 +01:00
|
|
|
$(call LINK, $^)
|
2018-01-04 02:53:34 +01:00
|
|
|
vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
|
|
|
|
$(call LINK, $^)
|
2019-01-18 13:46:14 +01:00
|
|
|
|
|
|
|
rdmacm-mux$(EXESUF): LIBS += "-libumad"
|
2018-12-21 15:40:15 +01:00
|
|
|
rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
|
|
|
|
$(call LINK, $^)
|
2014-09-08 11:17:48 +02:00
|
|
|
|
2019-05-24 15:09:42 +02:00
|
|
|
vhost-user-gpu$(EXESUF): $(vhost-user-gpu-obj-y) $(libvhost-user-obj-y) libqemuutil.a libqemustub.a
|
|
|
|
$(call LINK, $^)
|
|
|
|
|
2019-05-14 12:41:26 +02:00
|
|
|
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
|
|
|
|
|
2016-08-12 15:27:02 +02:00
|
|
|
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))), \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2016-08-12 15:27:02 +02:00
|
|
|
|
2018-06-20 13:34:45 +02:00
|
|
|
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
|
|
|
|
|
2019-05-28 10:23:08 +02:00
|
|
|
clean: recurse-clean
|
2003-08-12 01:01:33 +02:00
|
|
|
# avoid old build problems by removing potentially incorrect old files
|
2009-10-07 02:41:00 +02:00
|
|
|
rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h
|
2010-10-26 17:53:41 +02:00
|
|
|
rm -f qemu-options.def
|
2015-05-06 13:57:40 +02:00
|
|
|
rm -f *.msi
|
2019-02-04 17:03:21 +01:00
|
|
|
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 {} +
|
2019-03-08 01:19:35 +01:00
|
|
|
rm -f $(edk2-decompressed)
|
2019-07-18 12:22:01 +02:00
|
|
|
rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) TAGS cscope.* *.pod *~ */*~
|
2017-08-22 06:50:18 +02:00
|
|
|
rm -f fsdev/*.pod scsi/*.pod
|
2009-06-09 20:45:16 +02:00
|
|
|
rm -f qemu-img-cmds.h
|
2015-01-16 13:59:17 +01:00
|
|
|
rm -f ui/shader/*-vert.h ui/shader/*-frag.h
|
2019-04-01 16:12:19 +02:00
|
|
|
@# May not be present in generated-files-y
|
2012-12-14 20:13:09 +01:00
|
|
|
rm -f trace/generated-tracers-dtrace.dtrace*
|
|
|
|
rm -f trace/generated-tracers-dtrace.h*
|
2019-04-01 16:12:19 +02:00
|
|
|
rm -f $(foreach f,$(generated-files-y),$(f) $(f)-timestamp)
|
2018-02-26 20:48:58 +01:00
|
|
|
rm -f qapi-gen-timestamp
|
2012-07-28 21:11:24 +02:00
|
|
|
rm -rf qga/qapi-generated
|
2018-07-16 10:41:30 +02:00
|
|
|
rm -f config-all-devices.mak
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2012-07-17 20:33:32 +02:00
|
|
|
VERSION ?= $(shell cat VERSION)
|
|
|
|
|
|
|
|
dist: qemu-$(VERSION).tar.bz2
|
|
|
|
|
|
|
|
qemu-%.tar.bz2:
|
|
|
|
$(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
|
|
|
|
|
2019-03-07 15:26:46 +01:00
|
|
|
define clean-manual =
|
2019-03-08 14:57:42 +01:00
|
|
|
rm -rf $(MANUAL_BUILDDIR)/$1/_static
|
|
|
|
rm -f $(MANUAL_BUILDDIR)/$1/objects.inv $(MANUAL_BUILDDIR)/$1/searchindex.js $(MANUAL_BUILDDIR)/$1/*.html
|
2019-03-07 15:26:46 +01:00
|
|
|
endef
|
|
|
|
|
2003-03-07 00:23:54 +01:00
|
|
|
distclean: clean
|
2015-09-10 17:39:01 +02:00
|
|
|
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
|
2019-08-07 16:35:23 +02:00
|
|
|
rm -f tests/tcg/config-*.mak
|
2014-12-15 11:19:46 +01:00
|
|
|
rm -f config-all-devices.mak config-all-disas.mak config.status
|
2018-07-16 10:41:30 +02:00
|
|
|
rm -f $(SUBDIR_DEVICES_MAK)
|
2014-12-15 11:19:46 +01:00
|
|
|
rm -f po/*.mo tests/qemu-iotests/common.env
|
2009-11-13 10:51:05 +01:00
|
|
|
rm -f roms/seabios/config.mak roms/vgabios/config.mak
|
2017-01-13 15:41:32 +01:00
|
|
|
rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps
|
2011-04-13 08:42:16 +02:00
|
|
|
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
|
2017-01-24 15:02:18 +01:00
|
|
|
rm -f qemu-doc.vr qemu-doc.txt
|
2018-10-21 19:56:29 +02:00
|
|
|
rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
|
2011-07-26 05:56:02 +02:00
|
|
|
rm -f config.log
|
2012-02-01 19:50:42 +01:00
|
|
|
rm -f linux-headers/asm
|
2017-06-06 16:55:19 +02:00
|
|
|
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
|
2017-09-08 10:39:41 +02:00
|
|
|
rm -f docs/qemu-block-drivers.7
|
2018-06-27 18:01:03 +02:00
|
|
|
rm -f docs/qemu-cpu-models.7
|
2019-03-08 14:57:43 +01:00
|
|
|
rm -rf .doctrees
|
2019-03-07 15:26:46 +01:00
|
|
|
$(call clean-manual,devel)
|
|
|
|
$(call clean-manual,interop)
|
2019-06-17 16:35:31 +02:00
|
|
|
$(call clean-manual,specs)
|
2018-07-04 08:30:11 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2003-10-28 01:12:52 +01:00
|
|
|
rm -rf $$d || exit 1 ; \
|
2003-08-11 01:41:46 +02:00
|
|
|
done
|
2013-08-07 17:40:03 +02:00
|
|
|
rm -Rf .sdk
|
2015-04-01 19:58:38 +02:00
|
|
|
if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2018-11-16 11:43:16 +01:00
|
|
|
KEYMAPS=da en-gb et fr fr-ch is lt no pt-br sv \
|
2004-12-12 23:18:34 +01:00
|
|
|
ar de en-us fi fr-be hr it lv nl pl ru th \
|
2018-11-16 11:43:18 +01:00
|
|
|
de-ch es fo fr-ca hu ja mk pt sl tr \
|
2013-10-16 14:40:04 +02:00
|
|
|
bepo cz
|
2004-12-12 23:18:34 +01:00
|
|
|
|
2008-11-27 16:45:16 +01:00
|
|
|
ifdef INSTALL_BLOBS
|
2019-11-02 12:43:46 +01:00
|
|
|
BLOBS=bios.bin bios-256k.bin bios-microvm.bin sgabios.bin vgabios.bin vgabios-cirrus.bin \
|
2014-09-10 13:04:17 +02:00
|
|
|
vgabios-stdvga.bin vgabios-vmware.bin vgabios-qxl.bin vgabios-virtio.bin \
|
2019-07-03 06:52:12 +02:00
|
|
|
vgabios-ramfb.bin vgabios-bochs-display.bin vgabios-ati.bin \
|
2013-10-15 22:03:04 +02:00
|
|
|
ppc_rom.bin openbios-sparc32 openbios-sparc64 openbios-ppc QEMU,tcx.bin QEMU,cgthree.bin \
|
2011-04-18 19:46:01 +02:00
|
|
|
pxe-e1000.rom pxe-eepro100.rom pxe-ne2k_pci.rom \
|
|
|
|
pxe-pcnet.rom pxe-rtl8139.rom pxe-virtio.rom \
|
2013-04-08 23:08:13 +02:00
|
|
|
efi-e1000.rom efi-eepro100.rom efi-ne2k_pci.rom \
|
|
|
|
efi-pcnet.rom efi-rtl8139.rom efi-virtio.rom \
|
2016-07-01 13:26:57 +02:00
|
|
|
efi-e1000e.rom efi-vmxnet3.rom \
|
2019-07-15 19:48:14 +02:00
|
|
|
qemu-nsis.bmp \
|
2018-02-19 11:34:25 +01:00
|
|
|
bamboo.dtb canyonlands.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
|
2019-01-18 13:01:41 +01:00
|
|
|
multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin \
|
2017-07-12 16:00:41 +02:00
|
|
|
s390-ccw.img s390-netboot.img \
|
2019-07-16 07:27:43 +02:00
|
|
|
slof.bin skiboot.lid \
|
2014-07-04 21:43:18 +02:00
|
|
|
palcode-clipper \
|
2018-03-02 12:50:14 +01:00
|
|
|
u-boot.e500 u-boot-sam460-20100605.bin \
|
2018-01-21 22:04:45 +01:00
|
|
|
qemu_vga.ndrv \
|
2019-03-08 01:19:35 +01:00
|
|
|
edk2-licenses.txt \
|
2019-07-16 20:47:22 +02:00
|
|
|
hppa-firmware.img \
|
|
|
|
opensbi-riscv32-virt-fw_jump.bin \
|
|
|
|
opensbi-riscv64-sifive_u-fw_jump.bin opensbi-riscv64-virt-fw_jump.bin
|
|
|
|
|
2019-03-08 01:19:35 +01:00
|
|
|
|
|
|
|
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
|
2008-11-27 16:45:16 +01:00
|
|
|
else
|
|
|
|
BLOBS=
|
2019-03-08 01:19:35 +01:00
|
|
|
DESCS=
|
2008-11-27 16:45:16 +01:00
|
|
|
endif
|
|
|
|
|
2019-03-08 14:57:44 +01:00
|
|
|
# Note that we manually filter-out the non-Sphinx documentation which
|
2019-09-05 15:10:40 +02:00
|
|
|
# is currently built into the docs/interop directory in the build tree,
|
|
|
|
# and also any sphinx-built manpages.
|
2019-03-07 15:26:46 +01:00
|
|
|
define install-manual =
|
2019-03-08 14:57:42 +01:00
|
|
|
for d in $$(cd $(MANUAL_BUILDDIR) && find $1 -type d); do $(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)/$$d"; done
|
2019-09-05 15:10:40 +02:00
|
|
|
for f in $$(cd $(MANUAL_BUILDDIR) && find $1 -type f -a '!' '(' -name '*.[0-9]' -o -name 'qemu-*-qapi.*' -o -name 'qemu-*-ref.*' ')' ); do $(INSTALL_DATA) "$(MANUAL_BUILDDIR)/$$f" "$(DESTDIR)$(qemu_docdir)/$$f"; done
|
2019-03-07 15:26:46 +01:00
|
|
|
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)
|
2019-06-17 16:35:31 +02:00
|
|
|
$(call install-manual,specs)
|
2019-03-07 15:26:46 +01:00
|
|
|
|
|
|
|
install-doc: $(DOCS) install-sphinxdocs
|
2012-04-18 21:55:44 +02:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_docdir)"
|
2016-10-06 16:12:11 +02:00
|
|
|
$(INSTALL_DATA) qemu-doc.html "$(DESTDIR)$(qemu_docdir)"
|
2017-01-13 15:41:34 +01:00
|
|
|
$(INSTALL_DATA) qemu-doc.txt "$(DESTDIR)$(qemu_docdir)"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.html "$(DESTDIR)$(qemu_docdir)"
|
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.txt "$(DESTDIR)$(qemu_docdir)"
|
2009-08-03 14:47:00 +02:00
|
|
|
ifdef CONFIG_POSIX
|
2009-04-18 17:36:02 +02:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
|
2013-06-11 13:13:58 +02:00
|
|
|
$(INSTALL_DATA) qemu.1 "$(DESTDIR)$(mandir)/man1"
|
2017-01-13 15:41:35 +01:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man7"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(INSTALL_DATA) docs/interop/qemu-qmp-ref.7 "$(DESTDIR)$(mandir)/man7"
|
2017-09-08 10:39:41 +02:00
|
|
|
$(INSTALL_DATA) docs/qemu-block-drivers.7 "$(DESTDIR)$(mandir)/man7"
|
2018-06-27 18:01:03 +02:00
|
|
|
$(INSTALL_DATA) docs/qemu-cpu-models.7 "$(DESTDIR)$(mandir)/man7"
|
2019-07-18 12:24:29 +02:00
|
|
|
ifeq ($(CONFIG_TOOLS),y)
|
2013-06-11 13:13:58 +02:00
|
|
|
$(INSTALL_DATA) qemu-img.1 "$(DESTDIR)$(mandir)/man1"
|
2009-04-18 17:36:02 +02:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man8"
|
|
|
|
$(INSTALL_DATA) qemu-nbd.8 "$(DESTDIR)$(mandir)/man8"
|
2006-05-01 01:54:18 +02:00
|
|
|
endif
|
2019-01-23 13:00:16 +01:00
|
|
|
ifdef CONFIG_TRACE_SYSTEMTAP
|
|
|
|
$(INSTALL_DATA) scripts/qemu-trace-stap.1 "$(DESTDIR)$(mandir)/man1"
|
|
|
|
endif
|
2015-08-27 01:34:59 +02:00
|
|
|
ifneq (,$(findstring qemu-ga,$(TOOLS)))
|
2019-09-19 17:59:57 +02:00
|
|
|
$(INSTALL_DATA) $(MANUAL_BUILDDIR)/interop/qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
|
2017-06-06 16:55:19 +02:00
|
|
|
$(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"
|
2015-08-27 01:34:59 +02:00
|
|
|
endif
|
2013-06-11 13:13:58 +02:00
|
|
|
endif
|
2011-12-14 09:28:47 +01:00
|
|
|
ifdef CONFIG_VIRTFS
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(mandir)/man1"
|
|
|
|
$(INSTALL_DATA) fsdev/virtfs-proxy-helper.1 "$(DESTDIR)$(mandir)/man1"
|
|
|
|
endif
|
2012-05-02 18:07:30 +02:00
|
|
|
|
|
|
|
install-datadir:
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)"
|
|
|
|
|
2013-05-18 07:13:14 +02:00
|
|
|
install-localstatedir:
|
|
|
|
ifdef CONFIG_POSIX
|
|
|
|
ifneq (,$(findstring qemu-ga,$(TOOLS)))
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_localstatedir)"/run
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-01-10 13:00:45 +01:00
|
|
|
ICON_SIZES=16x16 24x24 32x32 48x48 64x64 128x128 256x256 512x512
|
2012-05-02 18:07:30 +02:00
|
|
|
|
2017-08-31 00:39:53 +02:00
|
|
|
install-includedir:
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(includedir)"
|
|
|
|
|
|
|
|
install: all $(if $(BUILD_DOCS),install-doc) \
|
|
|
|
install-datadir install-localstatedir install-includedir \
|
2019-05-28 10:23:08 +02:00
|
|
|
$(if $(INSTALL_BLOBS),$(edk2-decompressed)) \
|
|
|
|
recurse-install
|
2007-10-20 20:29:34 +02:00
|
|
|
ifneq ($(TOOLS),)
|
2019-07-18 12:22:01 +02:00
|
|
|
$(call install-prog,$(TOOLS),$(DESTDIR)$(bindir))
|
2007-10-20 20:29:34 +02:00
|
|
|
endif
|
2014-02-10 07:48:58 +01:00
|
|
|
ifneq ($(CONFIG_MODULES),)
|
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)"
|
2014-05-08 12:56:58 +02:00
|
|
|
for s in $(modules-m:.mo=$(DSOSUF)); do \
|
|
|
|
t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \
|
2014-05-08 13:06:03 +02:00
|
|
|
$(INSTALL_LIB) $$s "$$t"; \
|
2014-05-08 12:56:58 +02:00
|
|
|
test -z "$(STRIP)" || $(STRIP) "$$t"; \
|
2014-02-10 07:48:58 +01:00
|
|
|
done
|
|
|
|
endif
|
2012-01-26 15:42:24 +01:00
|
|
|
ifneq ($(HELPERS-y),)
|
2014-06-22 08:55:23 +02:00
|
|
|
$(call install-prog,$(HELPERS-y),$(DESTDIR)$(libexecdir))
|
2012-01-26 15:42:24 +01:00
|
|
|
endif
|
2019-05-24 15:09:42 +02:00
|
|
|
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
|
2019-01-23 13:00:16 +01:00
|
|
|
ifdef CONFIG_TRACE_SYSTEMTAP
|
|
|
|
$(INSTALL_PROG) "scripts/qemu-trace-stap" $(DESTDIR)$(bindir)
|
|
|
|
endif
|
2008-11-27 16:45:16 +01:00
|
|
|
ifneq ($(BLOBS),)
|
|
|
|
set -e; for x in $(BLOBS); do \
|
2012-04-18 21:55:41 +02:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(qemu_datadir)"; \
|
2006-04-16 14:41:07 +02:00
|
|
|
done
|
2019-03-08 01:19:35 +01:00
|
|
|
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 \
|
2019-05-30 21:28:11 +02:00
|
|
|
sed -e 's,@DATADIR@,$(qemu_datadir),' \
|
2019-03-08 01:19:35 +01:00
|
|
|
"$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \
|
|
|
|
$(INSTALL_DATA) "$$tmpf" \
|
|
|
|
"$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \
|
|
|
|
done
|
2013-02-20 14:43:24 +01:00
|
|
|
endif
|
2019-01-10 13:00:45 +01:00
|
|
|
for s in $(ICON_SIZES); do \
|
2019-05-21 16:53:18 +02:00
|
|
|
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps"; \
|
2019-01-10 13:00:45 +01:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_$${s}.png \
|
2019-05-21 16:53:18 +02:00
|
|
|
"$(DESTDIR)$(qemu_icondir)/hicolor/$${s}/apps/qemu.png"; \
|
2019-01-10 13:00:45 +01:00
|
|
|
done; \
|
2019-05-21 16:53:18 +02:00
|
|
|
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps"; \
|
2019-01-10 13:00:45 +01:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu_32x32.bmp \
|
2019-05-21 16:53:18 +02:00
|
|
|
"$(DESTDIR)$(qemu_icondir)/hicolor/32x32/apps/qemu.bmp"; \
|
|
|
|
mkdir -p "$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps"; \
|
2019-01-10 13:00:45 +01:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/ui/icons/qemu.svg \
|
2019-05-21 16:53:18 +02:00
|
|
|
"$(DESTDIR)$(qemu_icondir)/hicolor/scalable/apps/qemu.svg"
|
|
|
|
mkdir -p "$(DESTDIR)$(qemu_desktopdir)"
|
2019-01-10 13:00:46 +01:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/ui/qemu.desktop \
|
2019-05-21 16:53:18 +02:00
|
|
|
"$(DESTDIR)$(qemu_desktopdir)/qemu.desktop"
|
2018-04-16 11:37:19 +02:00
|
|
|
ifdef CONFIG_GTK
|
2013-02-20 14:43:24 +01:00
|
|
|
$(MAKE) -C po $@
|
2017-08-31 00:39:53 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_PLUGIN),y)
|
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/include/qemu/qemu-plugin.h "$(DESTDIR)$(includedir)/qemu-plugin.h"
|
2008-11-27 16:45:16 +01:00
|
|
|
endif
|
2012-04-18 21:55:41 +02:00
|
|
|
$(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/keymaps"
|
2008-03-05 19:16:09 +01:00
|
|
|
set -e; for x in $(KEYMAPS); do \
|
2012-04-18 21:55:41 +02:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/keymaps/$$x "$(DESTDIR)$(qemu_datadir)/keymaps"; \
|
2006-04-16 14:41:07 +02:00
|
|
|
done
|
2016-06-16 10:39:47 +02:00
|
|
|
$(INSTALL_DATA) $(BUILD_DIR)/trace-events-all "$(DESTDIR)$(qemu_datadir)/trace-events-all"
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2015-05-22 07:35:08 +02:00
|
|
|
.PHONY: ctags
|
|
|
|
ctags:
|
2016-06-09 19:58:35 +02:00
|
|
|
rm -f tags
|
2015-05-22 07:35:08 +02:00
|
|
|
find "$(SRC_PATH)" -name '*.[hc]' -exec ctags --append {} +
|
|
|
|
|
2009-08-07 16:43:11 +02:00
|
|
|
.PHONY: TAGS
|
2007-09-16 23:08:06 +02:00
|
|
|
TAGS:
|
2016-06-09 19:58:35 +02:00
|
|
|
rm -f TAGS
|
2013-03-12 03:57:28 +01:00
|
|
|
find "$(SRC_PATH)" -name '*.[hc]' -exec etags --append {} +
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2005-08-21 11:23:39 +02:00
|
|
|
cscope:
|
2015-05-22 07:35:07 +02:00
|
|
|
rm -f "$(SRC_PATH)"/cscope.*
|
|
|
|
find "$(SRC_PATH)/" -name "*.[chsS]" -print | sed 's,^\./,,' > "$(SRC_PATH)/cscope.files"
|
|
|
|
cscope -b -i"$(SRC_PATH)/cscope.files"
|
2005-08-21 11:23:39 +02:00
|
|
|
|
2015-01-16 13:59:17 +01:00
|
|
|
# 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 $< > $@,\
|
2016-10-04 18:27:21 +02:00
|
|
|
"VERT","$@")
|
2015-01-16 13:59:17 +01:00
|
|
|
|
|
|
|
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 $< > $@,\
|
2016-10-04 18:27:21 +02:00
|
|
|
"FRAG","$@")
|
2015-01-16 13:59:17 +01:00
|
|
|
|
2017-10-10 15:54:49 +02:00
|
|
|
ui/shader.o: $(SRC_PATH)/ui/shader.c \
|
2017-10-10 15:54:50 +02:00
|
|
|
ui/shader/texture-blit-vert.h \
|
|
|
|
ui/shader/texture-blit-flip-vert.h \
|
|
|
|
ui/shader/texture-blit-frag.h
|
2015-01-09 11:40:23 +01:00
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
# documentation
|
2017-01-19 10:06:44 +01:00
|
|
|
MAKEINFO=makeinfo
|
2017-06-06 16:55:19 +02:00
|
|
|
MAKEINFOINCLUDES= -I docs -I $(<D) -I $(@D)
|
|
|
|
MAKEINFOFLAGS=--no-split --number-sections $(MAKEINFOINCLUDES)
|
2018-11-26 11:51:25 +01:00
|
|
|
TEXI2PODFLAGS=$(MAKEINFOINCLUDES) -DVERSION="$(VERSION)" -DCONFDIR="$(qemu_confdir)"
|
2017-06-06 16:55:19 +02:00
|
|
|
TEXI2PDFFLAGS=$(if $(V),,--quiet) -I $(SRC_PATH) $(MAKEINFOINCLUDES)
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2018-11-26 11:51:25 +01:00
|
|
|
docs/version.texi: $(SRC_PATH)/VERSION config-host.mak
|
|
|
|
$(call quiet-command,(\
|
|
|
|
echo "@set VERSION $(VERSION)" && \
|
|
|
|
echo "@set CONFDIR $(qemu_confdir)" \
|
|
|
|
)> $@,"GEN","$@")
|
2017-02-17 19:59:28 +01:00
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.html: %.texi docs/version.texi
|
2017-01-13 15:41:31 +01:00
|
|
|
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
|
|
|
|
--html $< -o $@,"GEN","$@")
|
2003-03-23 21:17:16 +01:00
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.info: %.texi docs/version.texi
|
2017-01-13 15:41:31 +01:00
|
|
|
$(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@,"GEN","$@")
|
2006-05-01 00:51:54 +02:00
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.txt: %.texi docs/version.texi
|
2017-01-13 15:41:34 +01:00
|
|
|
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers \
|
|
|
|
--plaintext $< -o $@,"GEN","$@")
|
|
|
|
|
2017-06-06 16:59:37 +02:00
|
|
|
%.pdf: %.texi docs/version.texi
|
2017-06-06 16:55:19 +02:00
|
|
|
$(call quiet-command,texi2pdf $(TEXI2PDFFLAGS) $< -o $@,"GEN","$@")
|
2017-03-15 13:56:56 +01:00
|
|
|
|
2019-03-07 15:26:46 +01:00
|
|
|
# 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
|
2019-06-17 16:35:31 +02:00
|
|
|
sphinxdocs: $(MANUAL_BUILDDIR)/devel/index.html $(MANUAL_BUILDDIR)/interop/index.html $(MANUAL_BUILDDIR)/specs/index.html
|
2019-03-07 15:26:46 +01:00
|
|
|
|
|
|
|
# Canned command to build a single manual
|
2019-09-05 15:10:40 +02:00
|
|
|
# Arguments: $1 = manual name, $2 = Sphinx builder ('html' or 'man')
|
2019-10-14 17:01:33 +02:00
|
|
|
# Note the use of different doctree for each (manual, builder) tuple;
|
|
|
|
# this works around Sphinx not handling parallel invocation on
|
|
|
|
# a single doctree: https://github.com/sphinx-doc/sphinx/issues/2946
|
|
|
|
build-manual = $(call quiet-command,CONFDIR="$(qemu_confdir)" sphinx-build $(if $(V),,-q) -W -n -b $2 -D version=$(VERSION) -D release="$(FULL_VERSION)" -d .doctrees/$1-$2 $(SRC_PATH)/docs/$1 $(MANUAL_BUILDDIR)/$1 ,"SPHINX","$(MANUAL_BUILDDIR)/$1")
|
2019-03-07 15:26:46 +01:00
|
|
|
# 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
|
|
|
|
|
2019-03-08 14:57:42 +01:00
|
|
|
$(MANUAL_BUILDDIR)/devel/index.html: $(call manual-deps,devel)
|
2019-09-05 15:10:40 +02:00
|
|
|
$(call build-manual,devel,html)
|
2019-03-07 15:26:46 +01:00
|
|
|
|
2019-03-08 14:57:42 +01:00
|
|
|
$(MANUAL_BUILDDIR)/interop/index.html: $(call manual-deps,interop)
|
2019-09-05 15:10:40 +02:00
|
|
|
$(call build-manual,interop,html)
|
2019-03-07 15:26:46 +01:00
|
|
|
|
2019-06-17 16:35:31 +02:00
|
|
|
$(MANUAL_BUILDDIR)/specs/index.html: $(call manual-deps,specs)
|
2019-09-05 15:10:40 +02:00
|
|
|
$(call build-manual,specs,html)
|
|
|
|
|
|
|
|
$(MANUAL_BUILDDIR)/interop/qemu-ga.8: $(call manual-deps,interop)
|
|
|
|
$(call build-manual,interop,man)
|
2019-06-17 16:35:31 +02:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-options.texi: $(SRC_PATH)/qemu-options.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2006-05-01 00:51:54 +02:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-monitor.texi: $(SRC_PATH)/hmp-commands.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2009-06-06 10:22:04 +02:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-monitor-info.texi: $(SRC_PATH)/hmp-commands-info.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2015-09-10 17:39:01 +02:00
|
|
|
|
2016-06-07 13:27:04 +02:00
|
|
|
qemu-img-cmds.texi: $(SRC_PATH)/qemu-img-cmds.hx $(SRC_PATH)/scripts/hxtool
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -t < $< > $@,"GEN","$@")
|
2009-06-07 01:42:17 +02:00
|
|
|
|
2018-02-11 10:36:05 +01:00
|
|
|
docs/interop/qemu-qmp-qapi.texi: qapi/qapi-doc.texi
|
2018-02-26 20:48:58 +01:00
|
|
|
@cp -p $< $@
|
2017-03-20 14:11:50 +01:00
|
|
|
|
2018-02-26 20:48:58 +01:00
|
|
|
docs/interop/qemu-ga-qapi.texi: qga/qapi-generated/qga-qapi-doc.texi
|
|
|
|
@cp -p $< $@
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2015-09-10 17:39:01 +02:00
|
|
|
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
|
2016-06-17 16:44:09 +02:00
|
|
|
qemu.1: qemu-option-trace.texi
|
2016-06-17 16:44:14 +02:00
|
|
|
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
|
2011-12-14 09:28:47 +01:00
|
|
|
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
|
2016-06-17 16:44:12 +02:00
|
|
|
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
|
2017-09-08 10:39:41 +02:00
|
|
|
docs/qemu-block-drivers.7: docs/qemu-block-drivers.texi
|
2018-06-27 18:01:03 +02:00
|
|
|
docs/qemu-cpu-models.7: docs/qemu-cpu-models.texi
|
2019-01-23 13:00:16 +01:00
|
|
|
scripts/qemu-trace-stap.1: scripts/qemu-trace-stap.texi
|
2015-08-27 01:34:59 +02:00
|
|
|
|
2019-03-07 15:26:46 +01:00
|
|
|
html: qemu-doc.html docs/interop/qemu-qmp-ref.html docs/interop/qemu-ga-ref.html sphinxdocs
|
2017-06-06 16:55:19 +02:00
|
|
|
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
|
2006-05-14 14:07:53 +02:00
|
|
|
|
2017-01-24 15:02:18 +01:00
|
|
|
qemu-doc.html qemu-doc.info qemu-doc.pdf qemu-doc.txt: \
|
2019-07-15 07:57:35 +02:00
|
|
|
qemu-img.texi qemu-nbd.texi qemu-options.texi \
|
|
|
|
qemu-tech.texi qemu-option-trace.texi \
|
2019-09-05 15:10:40 +02:00
|
|
|
qemu-deprecated.texi qemu-monitor.texi qemu-img-cmds.texi \
|
2018-06-27 18:01:03 +02:00
|
|
|
qemu-monitor-info.texi docs/qemu-block-drivers.texi \
|
2019-05-09 14:18:20 +02:00
|
|
|
docs/qemu-cpu-models.texi docs/security.texi
|
2008-09-24 03:13:40 +02:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
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
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2017-06-06 16:55:19 +02:00
|
|
|
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
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2019-01-17 20:36:39 +01:00
|
|
|
$(filter %.1 %.7 %.8,$(DOCS)): scripts/texi2pod.pl
|
|
|
|
|
2018-06-20 15:04:24 +02:00
|
|
|
# Reports/Analysis
|
|
|
|
|
|
|
|
%/coverage-report.html:
|
|
|
|
@mkdir -p $*
|
|
|
|
$(call quiet-command,\
|
2019-04-30 17:59:48 +02:00
|
|
|
gcovr -r $(SRC_PATH) \
|
|
|
|
$(foreach t, $(TARGET_DIRS), --object-directory $(BUILD_DIR)/$(t)) \
|
|
|
|
--object-directory $(BUILD_DIR) \
|
2019-03-12 10:18:31 +01:00
|
|
|
-p --html --html-details -o $@, \
|
2018-06-20 15:04:24 +02:00
|
|
|
"GEN", "coverage-report.html")
|
|
|
|
|
|
|
|
.PHONY: coverage-report
|
|
|
|
coverage-report: $(CURDIR)/reports/coverage/coverage-report.html
|
2017-01-13 15:41:35 +01:00
|
|
|
|
2013-07-15 23:49:57 +02:00
|
|
|
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
|
|
|
|
|
2019-07-15 19:48:13 +02:00
|
|
|
$(INSTALLER): install-doc $(SRC_PATH)/qemu.nsi
|
2015-04-01 19:58:38 +02:00
|
|
|
$(MAKE) install prefix=${INSTDIR}
|
2013-07-15 23:49:57 +02:00
|
|
|
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)" \
|
2015-05-03 19:57:09 +02:00
|
|
|
-DDISPLAYVERSION="$(VERSION)" \
|
2013-07-15 23:49:57 +02:00
|
|
|
$(SRC_PATH)/qemu.nsi
|
|
|
|
rm -r ${INSTDIR}
|
|
|
|
ifdef SIGNCODE
|
|
|
|
$(SIGNCODE) $(INSTALLER)
|
|
|
|
endif # SIGNCODE
|
|
|
|
endif # CONFIG_WIN
|
|
|
|
|
2012-07-18 01:58:20 +02:00
|
|
|
# Add a dependency on the generated files, so that they are always
|
|
|
|
# rebuilt before other object files
|
2017-06-08 14:59:59 +02:00
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2015-05-22 07:35:07 +02:00
|
|
|
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
|
2019-04-01 16:12:19 +02:00
|
|
|
Makefile: $(generated-files-y)
|
2012-09-16 22:07:13 +02:00
|
|
|
endif
|
2017-06-08 14:59:59 +02:00
|
|
|
endif
|
2012-07-18 01:58:20 +02:00
|
|
|
|
2017-01-25 17:14:15 +01:00
|
|
|
.SECONDARY: $(TRACE_HEADERS) $(TRACE_HEADERS:%=%-timestamp) \
|
|
|
|
$(TRACE_SOURCES) $(TRACE_SOURCES:%=%-timestamp) \
|
|
|
|
$(TRACE_DTRACE) $(TRACE_DTRACE:%=%-timestamp)
|
|
|
|
|
2007-11-07 20:24:02 +01:00
|
|
|
# Include automatically generated dependency files
|
2012-07-11 16:40:21 +02:00
|
|
|
# Dependencies in Makefile.objs files come from our recursive subdir rules
|
|
|
|
-include $(wildcard *.d tests/*.d)
|
Makefile: Rules for docker testing
This adds a group of make targets to run docker tests, all are available
in source tree without running ./configure.
The usage is shown with "make docker".
Besides the fixed ones, dynamic targets for building each image and
running each test in each image are generated automatically by make,
scanning $(SRC_PATH)/tests/docker/ files with specific patterns.
Alternative to manually list particular targets (docker-TEST@IMAGE)
set, you can control which tests/images to run by filtering variables,
TESTS= and IMAGES=, which are expressed in Makefile pattern syntax,
"foo% %bar ...". For example:
$ make docker-test IMAGES="ubuntu fedora"
Unfortunately, it's impossible to propagate "-j $JOBS" into make in
containers, however since each combination is made a first class target
in the top Makefile, "make -j$N docker-test" still parallels the tests
coarsely.
Still, $J is made a magic variable to let all make invocations in
containers to use -j$J.
Instead of providing a live version of the source tree to the docker
container we snapshot it with git-archive. This ensures the tree is in a
pristine state for whatever operations the container is going to run on
them.
Uncommitted changes known to files known by the git index will be
included in the snapshot if there are any.
Signed-off-by: Fam Zheng <famz@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 1464755128-32490-5-git-send-email-famz@redhat.com
2016-06-01 06:25:17 +02:00
|
|
|
|
|
|
|
include $(SRC_PATH)/tests/docker/Makefile.include
|
2017-09-05 04:11:58 +02:00
|
|
|
include $(SRC_PATH)/tests/vm/Makefile.include
|
2016-09-13 16:20:33 +02:00
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@echo 'Generic targets:'
|
|
|
|
@echo ' all - Build all'
|
2018-03-06 17:17:28 +01:00
|
|
|
ifdef CONFIG_MODULES
|
|
|
|
@echo ' modules - Build all modules'
|
|
|
|
endif
|
2016-09-13 16:20:33 +02:00
|
|
|
@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 ''
|
2018-07-04 08:30:11 +02:00
|
|
|
@$(if $(TARGET_DIRS), \
|
2016-09-13 16:20:33 +02:00
|
|
|
echo 'Architecture specific targets:'; \
|
2018-07-04 08:30:11 +02:00
|
|
|
$(foreach t, $(TARGET_DIRS), \
|
Makefile: Rename targets for make recursion
We make a few sub-directories recursively, in particular
$(TARGET_DIRS).
For goal "all", we do it the nice way: "all" has a prerequisite
subdir-T for each T in $(TARGET_DIRS), and T's recipe runs make
recursively. Behaves nicely with -j and -k.
For other goals such as "clean" and "install", the recipe runs make
recursively in a for loop. Ignores -j and -k.
The next commit will fix that for "clean" and "install". This commit
prepares the ground by renaming the targets we use for "all" to
include the goal for the sub-make. This will permit reusing them for
goals other than "all".
Targets subdir-T for T in $(TARGET_DIRS) run "make all" in T. Rename
to T/all, and declare phony.
Targets romsubdir-R for R in $(ROMS) run "make" in pc-bios/R. Default
goal is "all" for all R. Rename to pc-bios/R/all, and declare phony.
The remainder are renamed just for consistency.
Target subdir-dtc runs "make libbft/libfdt.a" in dtc. Rename to
dtc/all, and declare phony.
Target subdir-capstone runs make $(BUILD_DIR)/capstone/$(LIBCAPSTONE)
in $(SRC_PATH)/capstone. Rename to capstone/all, and declare phony.
Target subdir-slirp runs "make" in $(SRC_PATH)/slirp. Default goal is
all, which builds $(BUILD_DIR)/libslirp.a. Rename to slirp/all, and
declare phony.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190528082308.22032-4-armbru@redhat.com>
[Add compatibility gunk to keep make working across the rename]
2019-05-28 10:23:07 +02:00
|
|
|
printf " %-30s - Build for %s\\n" $(t)/all $(t);) \
|
2016-09-13 16:20:33 +02:00
|
|
|
echo '')
|
|
|
|
@echo 'Cleaning targets:'
|
|
|
|
@echo ' clean - Remove most generated files but keep the config'
|
2018-06-20 13:34:45 +02:00
|
|
|
ifdef CONFIG_GCOV
|
|
|
|
@echo ' clean-coverage - Remove coverage files'
|
|
|
|
endif
|
2016-09-13 16:20:33 +02:00
|
|
|
@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)'
|
2019-05-23 17:37:51 +02:00
|
|
|
@echo ' docker - Help about targets running tests inside containers'
|
2019-05-31 08:43:41 +02:00
|
|
|
@echo ' vm-help - Help about targets running tests inside VM'
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
@echo 'Documentation targets:'
|
2017-01-13 15:41:34 +01:00
|
|
|
@echo ' html info pdf txt'
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ' - Build documentation in specified format'
|
2018-06-20 15:04:24 +02:00
|
|
|
ifdef CONFIG_GCOV
|
|
|
|
@echo ' coverage-report - Create code coverage report'
|
|
|
|
endif
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
@echo 'Windows targets:'
|
2016-10-20 21:36:32 +02:00
|
|
|
@echo ' installer - Build NSIS-based installer for QEMU'
|
2016-09-13 16:20:33 +02:00
|
|
|
ifdef QEMU_GA_MSI_ENABLED
|
|
|
|
@echo ' msi - Build MSI-based installer for qemu-ga'
|
|
|
|
endif
|
|
|
|
@echo ''
|
|
|
|
endif
|
2018-01-23 17:47:18 +01:00
|
|
|
@echo ' $(MAKE) [targets] (quiet build, default)'
|
|
|
|
@echo ' $(MAKE) V=1 [targets] (verbose build)'
|