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
|
|
|
|
|
2020-10-14 13:35:13 +02:00
|
|
|
SHELL = /usr/bin/env bash -o pipefail
|
|
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
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
|
2018-12-14 09:47:54 +01:00
|
|
|
config-host.mak: $(SRC_PATH)/configure $(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
|
|
|
|
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
|
|
|
|
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),)
|
2020-10-26 16:58:54 +01:00
|
|
|
MAKE.n = $(findstring n,$(firstword $(MAKEFLAGS)))
|
|
|
|
MAKE.k = $(findstring k,$(firstword $(MAKEFLAGS)))
|
|
|
|
MAKE.q = $(findstring q,$(firstword $(MAKEFLAGS)))
|
|
|
|
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)))) \
|
|
|
|
|
|
|
|
ninja-cmd-goals = $(or $(MAKECMDGOALS), all)
|
|
|
|
ninja-cmd-goals += $(foreach t, $(.tests), $(.test.deps.$t))
|
|
|
|
|
|
|
|
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)),)
|
2020-10-26 16:58:54 +01:00
|
|
|
+$(quiet-@)$(if $(MAKE.nq),@:, $(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
|
|
|
# Force configure to re-run if the API symbols are updated
|
|
|
|
ifeq ($(CONFIG_PLUGIN),y)
|
|
|
|
config-host.mak: $(SRC_PATH)/plugins/qemu-plugins.symbols
|
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
|
|
|
|
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):
|
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
|
2020-08-31 14:36:27 +02:00
|
|
|
recurse-all: $(addsuffix /all, $(ROM_DIRS))
|
2020-08-05 13:05:13 +02:00
|
|
|
recurse-clean: $(addsuffix /clean, $(ROM_DIRS))
|
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 || :
|
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
|
2019-12-12 13:30:36 +01:00
|
|
|
find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -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 {} +
|
2019-07-18 13:21:28 +02:00
|
|
|
rm -f TAGS cscope.* *.pod *~ */*~
|
2017-08-22 06:50:18 +02:00
|
|
|
rm -f fsdev/*.pod scsi/*.pod
|
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 || :
|
2020-08-05 13:07:48 +02:00
|
|
|
rm -f config-host.mak config-host.h*
|
2019-08-07 16:35:23 +02:00
|
|
|
rm -f tests/tcg/config-*.mak
|
2020-02-03 11:42:03 +01:00
|
|
|
rm -f config-all-disas.mak config.status
|
2019-09-19 19:02:09 +02:00
|
|
|
rm -f tests/qemu-iotests/common.env
|
2009-11-13 10:51:05 +01:00
|
|
|
rm -f roms/seabios/config.mak roms/vgabios/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
|
|
|
|
2020-10-13 11:18:13 +02:00
|
|
|
find-src-path = find "$(SRC_PATH)/" -path "$(SRC_PATH)/meson" -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:
|
2020-10-15 16:49:06 +02:00
|
|
|
rm -f "$(SRC_PATH)/"tags
|
|
|
|
$(find-src-path) -exec ctags -f "$(SRC_PATH)/"tags --append {} +
|
2020-09-01 16:20:10 +02:00
|
|
|
|
|
|
|
.PHONY: TAGS
|
|
|
|
TAGS:
|
2020-10-15 16:49:06 +02:00
|
|
|
rm -f "$(SRC_PATH)/"TAGS
|
|
|
|
$(find-src-path) -exec etags -f "$(SRC_PATH)/"TAGS --append {} +
|
2020-09-01 16:20:10 +02:00
|
|
|
|
|
|
|
.PHONY: cscope
|
|
|
|
cscope:
|
|
|
|
rm -f "$(SRC_PATH)"/cscope.*
|
2020-09-03 21:47:55 +02:00
|
|
|
$(find-src-path) -print | sed -e 's,^\./,,' > "$(SRC_PATH)/cscope.files"
|
2020-10-15 16:49:06 +02:00
|
|
|
cscope -b -i"$(SRC_PATH)/cscope.files" -f"$(SRC_PATH)"/cscope.out
|
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
|
|
|
|
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)
|
|
|
|
$(call print-help,ctags/TAGS,Generate tags file for editors)
|
|
|
|
$(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)
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,docker,Help about targets running tests inside containers)
|
|
|
|
$(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)
|
2020-09-14 11:52:31 +02:00
|
|
|
ifdef CONFIG_QGA_MSI
|
2020-03-05 01:48:54 +01:00
|
|
|
$(call print-help,msi,Build MSI-based installer for qemu-ga)
|
2016-09-13 16:20:33 +02:00
|
|
|
endif
|
|
|
|
@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 '$*=$($*)'
|