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=.
|
|
|
|
|
2020-09-01 18:10:05 +02:00
|
|
|
# Don't use implicit rules or variables
|
|
|
|
# we have explicit rules for everything
|
|
|
|
MAKEFLAGS += -rR
|
|
|
|
|
2021-07-05 10:25:42 +02:00
|
|
|
SHELL = bash -o pipefail
|
2020-10-14 13:35:13 +02:00
|
|
|
|
2020-09-01 18:10:05 +02:00
|
|
|
# Usage: $(call quiet-command,command and args,"NAME","args to print")
|
|
|
|
# This will run "command and args", and either:
|
|
|
|
# if V=1 just print the whole command and args
|
|
|
|
# otherwise print the 'quiet' output in the format " NAME args to print"
|
|
|
|
# NAME should be a short name of the command, 7 letters or fewer.
|
|
|
|
# If called with only a single argument, will print nothing in quiet mode.
|
|
|
|
quiet-command-run = $(if $(V),,$(if $2,printf " %-7s %s\n" $2 $3 && ))$1
|
|
|
|
quiet-@ = $(if $(V),,@)
|
|
|
|
quiet-command = $(quiet-@)$(call quiet-command-run,$1,$2,$3)
|
|
|
|
|
2017-11-21 04:22:47 +01:00
|
|
|
UNCHECKED_GOALS := %clean TAGS cscope ctags dist \
|
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
|
|
|
|
2020-10-15 18:20:02 +02:00
|
|
|
all:
|
|
|
|
.PHONY: all clean distclean recurse-all dist msi FORCE
|
|
|
|
|
|
|
|
# Don't try to regenerate Makefile or configure
|
|
|
|
# We don't generate any of them
|
|
|
|
Makefile: ;
|
|
|
|
configure: ;
|
|
|
|
|
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),)
|
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:
|
2020-10-15 18:20:02 +02:00
|
|
|
.git-submodule-status: git-submodule-update config-host.mak
|
|
|
|
Makefile: .git-submodule-status
|
2017-09-29 12:11:56 +02:00
|
|
|
|
|
|
|
.PHONY: git-submodule-update
|
|
|
|
git-submodule-update:
|
2021-05-12 09:21:56 +02:00
|
|
|
ifneq ($(GIT_SUBMODULES_ACTION),ignore)
|
2017-09-29 12:11:56 +02:00
|
|
|
$(call quiet-command, \
|
configure: replace --enable/disable-git-update with --with-git-submodules
Replace the --enable-git-update and --disable-git-update configure params
with the param --with-git-submodules=(update|validate|ignore) to
allow 3 options for building from a git repo.
This is needed because downstream packagers, e.g. Debian, Ubuntu, etc,
also keep the source code in git, but do not want to enable the
'git_update' mode; with the current code, that's not possible even
if the downstream package specifies --disable-git-update.
The previous parameters are deprecated but still available; the
--enable-git-update parameter maps to --with-git-submodules=update and
--disable-git-update parameter maps to --with-git-submodules=validate.
The configure script behavior is slightly modified, where previously
the dtc, capstone, and slirp submodules were not validated when
--disable-git-update was specified (but were updated with git-update
enabled), now they are validated when using --with-git-submodules=validate
and are only ignored when using --with-git-submodules=ignore.
Signed-off-by: Dan Streetman <ddstreet@canonical.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
2021-01-19 18:20:46 +01:00
|
|
|
(GIT="$(GIT)" "$(SRC_PATH)/scripts/git-submodule.sh" $(GIT_SUBMODULES_ACTION) $(GIT_SUBMODULES)), \
|
|
|
|
"GIT","$(GIT_SUBMODULES)")
|
2021-05-12 09:21:56 +02:00
|
|
|
endif
|
2017-09-29 12:11:56 +02:00
|
|
|
|
2020-08-13 15:28:11 +02:00
|
|
|
# 0. ensure the build tree is okay
|
2019-06-10 12:05:14 +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
|
|
|
|
|
2020-10-15 18:20:02 +02:00
|
|
|
# force a rerun of configure if config-host.mak is too old or corrupted
|
|
|
|
ifeq ($(MESON),)
|
|
|
|
.PHONY: config-host.mak
|
|
|
|
x := $(shell rm -rf meson-private meson-info meson-logs)
|
|
|
|
endif
|
|
|
|
ifeq ($(NINJA),)
|
|
|
|
.PHONY: config-host.mak
|
|
|
|
x := $(shell rm -rf meson-private meson-info meson-logs)
|
2020-10-23 14:34:54 +02:00
|
|
|
else
|
|
|
|
export NINJA
|
2020-10-15 18:20:02 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(wildcard build.ninja),)
|
|
|
|
.PHONY: config-host.mak
|
|
|
|
x := $(shell rm -rf meson-private meson-info meson-logs)
|
|
|
|
endif
|
2020-10-16 09:19:14 +02:00
|
|
|
ifeq ($(origin prefix),file)
|
|
|
|
.PHONY: config-host.mak
|
|
|
|
x := $(shell rm -rf meson-private meson-info meson-logs)
|
|
|
|
endif
|
2020-10-15 18:20:02 +02:00
|
|
|
|
2020-08-13 15:28:11 +02:00
|
|
|
# 1. ensure config-host.mak is up-to-date
|
2021-10-07 15:08:28 +02:00
|
|
|
config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/scripts/meson-buildoptions.sh $(SRC_PATH)/pc-bios $(SRC_PATH)/VERSION
|
2020-10-23 14:34:54 +02:00
|
|
|
@echo config-host.mak is out-of-date, running configure
|
2019-06-10 12:05:14 +02:00
|
|
|
@if test -f meson-private/coredata.dat; then \
|
|
|
|
./config.status --skip-meson; \
|
|
|
|
else \
|
2020-10-23 14:34:54 +02:00
|
|
|
./config.status && touch build.ninja.stamp; \
|
2019-06-10 12:05:14 +02:00
|
|
|
fi
|
2018-10-21 19:56:29 +02:00
|
|
|
|
2020-10-23 14:34:54 +02:00
|
|
|
# 2. meson.stamp exists if meson has run at least once (so ninja reconfigure
|
|
|
|
# works), but otherwise never needs to be updated
|
|
|
|
meson-private/coredata.dat: meson.stamp
|
|
|
|
meson.stamp: config-host.mak
|
|
|
|
@touch meson.stamp
|
|
|
|
|
|
|
|
# 3. ensure generated build files are up-to-date
|
2020-08-13 15:28:11 +02:00
|
|
|
|
|
|
|
ifneq ($(NINJA),)
|
|
|
|
Makefile.ninja: build.ninja
|
2020-10-23 14:34:54 +02:00
|
|
|
$(quiet-@){ \
|
|
|
|
echo 'ninja-targets = \'; \
|
|
|
|
$(NINJA) -t targets all | sed 's/:.*//; $$!s/$$/ \\/'; \
|
|
|
|
echo 'build-files = \'; \
|
|
|
|
$(NINJA) -t query build.ninja | sed -n '1,/^ input:/d; /^ outputs:/q; s/$$/ \\/p'; \
|
|
|
|
} > $@.tmp && mv $@.tmp $@
|
2020-08-13 15:28:11 +02:00
|
|
|
-include Makefile.ninja
|
2020-10-23 14:34:54 +02:00
|
|
|
|
|
|
|
# A separate rule is needed for Makefile dependencies to avoid -n
|
|
|
|
build.ninja: build.ninja.stamp
|
2020-12-16 13:13:40 +01:00
|
|
|
$(build-files):
|
2020-10-23 14:34:54 +02:00
|
|
|
build.ninja.stamp: meson.stamp $(build-files)
|
|
|
|
$(NINJA) $(if $V,-v,) build.ninja && touch $@
|
2020-08-13 15:28:11 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(MESON),)
|
2020-10-23 14:34:54 +02:00
|
|
|
Makefile.mtest: build.ninja scripts/mtest2make.py
|
2020-08-13 15:28:11 +02:00
|
|
|
$(MESON) introspect --targets --tests --benchmarks | $(PYTHON) scripts/mtest2make.py > $@
|
|
|
|
-include Makefile.mtest
|
2021-10-07 15:08:28 +02:00
|
|
|
|
|
|
|
.PHONY: update-buildoptions
|
|
|
|
all update-buildoptions: $(SRC_PATH)/scripts/meson-buildoptions.sh
|
|
|
|
$(SRC_PATH)/scripts/meson-buildoptions.sh: $(SRC_PATH)/meson_options.txt
|
|
|
|
$(MESON) introspect --buildoptions $(SRC_PATH)/meson.build | $(PYTHON) \
|
|
|
|
scripts/meson-buildoptions.py > $@.tmp && mv $@.tmp $@
|
2020-08-13 15:28:11 +02:00
|
|
|
endif
|
|
|
|
|
2020-10-23 14:34:54 +02:00
|
|
|
# 4. Rules to bridge to other makefiles
|
2020-08-13 15:28:11 +02:00
|
|
|
|
|
|
|
ifneq ($(NINJA),)
|
2021-07-22 04:08:46 +02:00
|
|
|
# Filter out long options to avoid flags like --no-print-directory which
|
|
|
|
# may result in false positive match for MAKE.n
|
|
|
|
MAKE.n = $(findstring n,$(firstword $(filter-out --%,$(MAKEFLAGS))))
|
|
|
|
MAKE.k = $(findstring k,$(firstword $(filter-out --%,$(MAKEFLAGS))))
|
|
|
|
MAKE.q = $(findstring q,$(firstword $(filter-out --%,$(MAKEFLAGS))))
|
2020-10-26 16:58:54 +01:00
|
|
|
MAKE.nq = $(if $(word 2, $(MAKE.n) $(MAKE.q)),nq)
|
|
|
|
NINJAFLAGS = $(if $V,-v) $(if $(MAKE.n), -n) $(if $(MAKE.k), -k0) \
|
2020-08-13 15:28:11 +02:00
|
|
|
$(filter-out -j, $(lastword -j1 $(filter -l% -j%, $(MAKEFLAGS)))) \
|
2022-05-27 17:35:43 +02:00
|
|
|
-d keepdepfile
|
2020-08-13 15:28:11 +02:00
|
|
|
ninja-cmd-goals = $(or $(MAKECMDGOALS), all)
|
2022-05-27 17:35:44 +02:00
|
|
|
ninja-cmd-goals += $(foreach g, $(MAKECMDGOALS), $(.ninja-goals.$g))))
|
2020-08-13 15:28:11 +02:00
|
|
|
|
|
|
|
makefile-targets := build.ninja ctags TAGS cscope dist clean uninstall
|
2020-10-23 14:34:54 +02:00
|
|
|
# "ninja -t targets" also lists all prerequisites. If build system
|
|
|
|
# files are marked as PHONY, however, Make will always try to execute
|
|
|
|
# "ninja build.ninja".
|
|
|
|
ninja-targets := $(filter-out $(build-files) $(makefile-targets), $(ninja-targets))
|
2020-08-13 15:28:11 +02:00
|
|
|
.PHONY: $(ninja-targets) run-ninja
|
|
|
|
$(ninja-targets): run-ninja
|
|
|
|
|
|
|
|
# Use "| cat" to give Ninja a more "make-y" output. Use "+" to bypass the
|
|
|
|
# --output-sync line.
|
|
|
|
run-ninja: config-host.mak
|
|
|
|
ifneq ($(filter $(ninja-targets), $(ninja-cmd-goals)),)
|
2022-05-27 17:35:43 +02:00
|
|
|
+$(if $(MAKE.nq),@:,$(quiet-@)$(NINJA) $(NINJAFLAGS) \
|
|
|
|
$(sort $(filter $(ninja-targets), $(ninja-cmd-goals))) | cat)
|
2020-08-13 15:28:11 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-10-21 19:56:29 +02:00
|
|
|
ifeq ($(CONFIG_PLUGIN),y)
|
2020-09-09 13:27:41 +02:00
|
|
|
.PHONY: plugins
|
|
|
|
plugins:
|
|
|
|
$(call quiet-command,\
|
|
|
|
$(MAKE) $(SUBDIR_MAKEFLAGS) -C contrib/plugins V="$(V)", \
|
|
|
|
"BUILD", "example plugins")
|
2020-10-15 18:20:02 +02:00
|
|
|
endif # $(CONFIG_PLUGIN)
|
2018-10-21 19:56:29 +02:00
|
|
|
|
2020-10-15 18:20:02 +02:00
|
|
|
else # config-host.mak does not exist
|
2009-04-15 16:42:57 +02:00
|
|
|
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
|
2020-10-15 18:20:02 +02:00
|
|
|
endif # config-host.mak does not exist
|
2003-02-19 00:35:48 +01:00
|
|
|
|
2020-09-01 18:10:05 +02:00
|
|
|
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory --quiet)
|
2009-11-22 17:25:30 +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-12-12 13:30:36 +01:00
|
|
|
all: recurse-all
|
2019-02-12 17:25:23 +01:00
|
|
|
|
2022-04-13 15:22:01 +02:00
|
|
|
ROMS_RULES=$(foreach t, all clean, $(addsuffix /$(t), $(ROMS)))
|
|
|
|
.PHONY: $(ROMS_RULES)
|
|
|
|
$(ROMS_RULES):
|
2020-08-31 14:36:27 +02:00
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $(dir $@) V="$(V)" TARGET_DIR="$(dir $@)" $(notdir $@),)
|
2009-07-31 14:18:32 +02:00
|
|
|
|
2020-08-05 13:05:13 +02:00
|
|
|
.PHONY: recurse-all recurse-clean
|
2022-04-13 15:22:01 +02:00
|
|
|
recurse-all: $(addsuffix /all, $(ROMS))
|
|
|
|
recurse-clean: $(addsuffix /clean, $(ROMS))
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2011-05-15 10:51:28 +02:00
|
|
|
######################################################################
|
2007-11-07 20:24:02 +01:00
|
|
|
|
2020-08-13 15:28:11 +02:00
|
|
|
clean: recurse-clean
|
2020-11-05 13:44:56 +01:00
|
|
|
-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) -t clean || :
|
|
|
|
-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) clean-ctlist || :
|
2022-02-04 21:43:12 +01:00
|
|
|
find . \( -name '*.so' -o -name '*.dll' -o \
|
|
|
|
-name '*.[oda]' -o -name '*.gcno' \) -type f \
|
2019-02-04 17:03:21 +01:00
|
|
|
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
|
|
|
|
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
|
|
|
|
-exec rm {} +
|
2021-10-13 13:51:32 +02:00
|
|
|
rm -f TAGS cscope.* *~ */*~
|
2003-02-18 23:55:36 +01:00
|
|
|
|
2020-08-04 18:14:26 +02:00
|
|
|
VERSION = $(shell cat $(SRC_PATH)/VERSION)
|
2012-07-17 20:33:32 +02:00
|
|
|
|
|
|
|
dist: qemu-$(VERSION).tar.bz2
|
|
|
|
|
|
|
|
qemu-%.tar.bz2:
|
|
|
|
$(SRC_PATH)/scripts/make-release "$(SRC_PATH)" "$(patsubst qemu-%.tar.bz2,%,$@)"
|
|
|
|
|
2020-08-13 15:28:11 +02:00
|
|
|
distclean: clean
|
2020-11-05 13:44:56 +01:00
|
|
|
-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) -t clean -g || :
|
2021-11-10 11:01:26 +01:00
|
|
|
rm -f config-host.mak
|
2019-08-07 16:35:23 +02:00
|
|
|
rm -f tests/tcg/config-*.mak
|
2021-10-13 13:51:32 +02:00
|
|
|
rm -f config.status
|
|
|
|
rm -f roms/seabios/config.mak
|
2018-10-21 19:56:29 +02:00
|
|
|
rm -f qemu-plugins-ld.symbols qemu-plugins-ld64.symbols
|
2020-08-03 17:04:25 +02:00
|
|
|
rm -f *-config-target.h *-config-devices.mak *-config-devices.h
|
2019-06-10 12:05:14 +02:00
|
|
|
rm -rf meson-private meson-logs meson-info compile_commands.json
|
2020-10-23 14:34:54 +02:00
|
|
|
rm -f Makefile.ninja Makefile.mtest build.ninja.stamp meson.stamp
|
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
|
2013-08-07 17:40:03 +02:00
|
|
|
rm -Rf .sdk
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2021-08-04 15:23:28 +02:00
|
|
|
find-src-path = find "$(SRC_PATH)" -path "$(SRC_PATH)/meson" -prune -o \
|
|
|
|
-type l -prune -o \( -name "*.[chsS]" -o -name "*.[ch].inc" \)
|
2020-09-03 21:47:55 +02:00
|
|
|
|
2020-09-01 16:20:10 +02:00
|
|
|
.PHONY: ctags
|
|
|
|
ctags:
|
2021-01-14 17:57:23 +01:00
|
|
|
$(call quiet-command, \
|
|
|
|
rm -f "$(SRC_PATH)/"tags, \
|
|
|
|
"CTAGS", "Remove old tags")
|
|
|
|
$(call quiet-command, \
|
|
|
|
$(find-src-path) -exec ctags \
|
|
|
|
-f "$(SRC_PATH)/"tags --append {} +, \
|
|
|
|
"CTAGS", "Re-index $(SRC_PATH)")
|
2020-09-01 16:20:10 +02:00
|
|
|
|
2021-01-14 17:57:20 +01:00
|
|
|
.PHONY: gtags
|
|
|
|
gtags:
|
|
|
|
$(call quiet-command, \
|
|
|
|
rm -f "$(SRC_PATH)/"GTAGS; \
|
|
|
|
rm -f "$(SRC_PATH)/"GRTAGS; \
|
|
|
|
rm -f "$(SRC_PATH)/"GPATH, \
|
|
|
|
"GTAGS", "Remove old $@ files")
|
|
|
|
$(call quiet-command, \
|
|
|
|
(cd $(SRC_PATH) && \
|
2021-08-04 15:23:27 +02:00
|
|
|
$(find-src-path) -print | gtags -f -), \
|
2021-01-14 17:57:20 +01:00
|
|
|
"GTAGS", "Re-index $(SRC_PATH)")
|
|
|
|
|
2020-09-01 16:20:10 +02:00
|
|
|
.PHONY: TAGS
|
|
|
|
TAGS:
|
2021-01-14 17:57:24 +01:00
|
|
|
$(call quiet-command, \
|
|
|
|
rm -f "$(SRC_PATH)/"TAGS, \
|
|
|
|
"TAGS", "Remove old $@")
|
|
|
|
$(call quiet-command, \
|
|
|
|
$(find-src-path) -exec etags \
|
|
|
|
-f "$(SRC_PATH)/"TAGS --append {} +, \
|
|
|
|
"TAGS", "Re-index $(SRC_PATH)")
|
2020-09-01 16:20:10 +02:00
|
|
|
|
|
|
|
.PHONY: cscope
|
|
|
|
cscope:
|
2021-01-14 17:57:25 +01:00
|
|
|
$(call quiet-command, \
|
|
|
|
rm -f "$(SRC_PATH)/"cscope.* , \
|
|
|
|
"cscope", "Remove old $@ files")
|
|
|
|
$(call quiet-command, \
|
|
|
|
($(find-src-path) -print | sed -e 's,^\./,,' \
|
|
|
|
> "$(SRC_PATH)/cscope.files"), \
|
|
|
|
"cscope", "Create file list")
|
|
|
|
$(call quiet-command, \
|
|
|
|
cscope -b -i"$(SRC_PATH)/cscope.files" \
|
|
|
|
-f"$(SRC_PATH)"/cscope.out, \
|
|
|
|
"cscope", "Re-index $(SRC_PATH)")
|
2020-09-01 16:20:10 +02:00
|
|
|
|
2019-06-10 12:05:14 +02:00
|
|
|
# Needed by "meson install"
|
|
|
|
export DESTDIR
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2022-01-05 14:49:42 +01:00
|
|
|
include $(SRC_PATH)/tests/lcitool/Makefile.include
|
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
|
|
|
|
2020-03-05 01:48:54 +01:00
|
|
|
print-help-run = printf " %-30s - %s\\n" "$1" "$2"
|
2020-11-05 16:47:00 +01:00
|
|
|
print-help = @$(call print-help-run,$1,$2)
|
2020-03-05 01:48:54 +01:00
|
|
|
|
2016-09-13 16:20:33 +02:00
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@echo 'Generic targets:'
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,all,Build all)
|
|
|
|
$(call print-help,dir/file.o,Build specified target only)
|
|
|
|
$(call print-help,install,Install QEMU, documentation and tools)
|
2021-01-14 17:57:20 +01:00
|
|
|
$(call print-help,ctags/gtags/TAGS,Generate tags file for editors)
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,cscope,Generate cscope index)
|
2020-02-03 14:45:33 +01:00
|
|
|
$(call print-help,sparse,Run sparse on the QEMU source)
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
2020-09-09 13:27:41 +02:00
|
|
|
ifeq ($(CONFIG_PLUGIN),y)
|
|
|
|
@echo 'Plugin targets:'
|
|
|
|
$(call print-help,plugins,Build the example TCG plugins)
|
|
|
|
@echo ''
|
|
|
|
endif
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo 'Cleaning targets:'
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,clean,Remove most generated files but keep the config)
|
|
|
|
$(call print-help,distclean,Remove all generated files)
|
|
|
|
$(call print-help,dist,Build a distributable tarball)
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
@echo 'Test targets:'
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,check,Run all tests (check-help for details))
|
2020-09-02 13:25:19 +02:00
|
|
|
$(call print-help,bench,Run all benchmarks)
|
2022-01-05 14:49:42 +01:00
|
|
|
$(call print-help,lcitool-help,Help about targets for managing build environment manifests)
|
2021-02-02 14:39:50 +01:00
|
|
|
$(call print-help,docker-help,Help about targets running tests inside containers)
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,vm-help,Help about targets running tests inside VM)
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
@echo 'Documentation targets:'
|
docs/interop: Convert qemu-qmp-ref to rST
Convert qemu-qmp-ref to rST format. This includes dropping
the plain-text, pdf and info format outputs for this document;
as with all our other Sphinx-based documentation, we provide
HTML and manpage only.
The qemu-qmp-ref.rst is somewhat more stripped down than
the .texi was, because we do not (currently) attempt to
generate indexes for the commands, events and data types
being documented.
Again, we drop the direct link from index.html.in now that
the QMP ref is part of the interop manual.
This commit removes the code from the root meson.build file that
handled the various Texinfo-based outputs, because we no longer
generate any documentation except for the Sphinx HTML manuals and the
manpages, and the code can't handle having an empty list of files
to process.. We'll do further cleanup of the remainders of
Texinfo support in subsequent commits.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200925162316.21205-10-peter.maydell@linaro.org>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
[Unicode legacy literal dumbed down to plain string literal, TODO
comment on displaying QEMU version added, "make html" fixed,
storage-daemon/qapi/meson.build updated]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
2020-09-25 18:23:04 +02:00
|
|
|
$(call print-help,html man,Build documentation in specified format)
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
ifdef CONFIG_WIN32
|
|
|
|
@echo 'Windows targets:'
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,installer,Build NSIS-based installer for QEMU)
|
|
|
|
$(call print-help,msi,Build MSI-based installer for qemu-ga)
|
2016-09-13 16:20:33 +02:00
|
|
|
@echo ''
|
|
|
|
endif
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,$(MAKE) [targets],(quiet build, default))
|
|
|
|
$(call print-help,$(MAKE) V=1 [targets],(verbose build))
|
2020-09-01 18:10:05 +02:00
|
|
|
|
|
|
|
# will delete the target of a rule if commands exit with a nonzero exit status
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
|
|
|
|
print-%:
|
|
|
|
@echo '$*=$($*)'
|