2006-05-14 14:07:53 +02:00
|
|
|
# Makefile for QEMU.
|
|
|
|
|
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=.
|
|
|
|
|
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
|
|
|
UNCHECKED_GOALS := %clean TAGS cscope ctags docker docker-%
|
2015-05-22 07:35:07 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
# 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 \
|
|
|
|
"make distclean && rm -rf *-linux-user *-softmmu" in your source tree)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-04-16 10:50:38 +02:00
|
|
|
CONFIG_SOFTMMU := $(if $(filter %-softmmu,$(TARGET_DIRS)),y)
|
|
|
|
CONFIG_USER_ONLY := $(if $(filter %-user,$(TARGET_DIRS)),y)
|
|
|
|
CONFIG_ALL=y
|
|
|
|
-include config-all-devices.mak
|
|
|
|
-include config-all-disas.mak
|
|
|
|
|
2016-07-01 13:28:37 +02:00
|
|
|
config-host.mak: $(SRC_PATH)/configure $(SRC_PATH)/pc-bios
|
2009-10-07 02:40:59 +02:00
|
|
|
@echo $@ is out-of-date, running configure
|
2013-10-20 18:39:21 +02:00
|
|
|
@# TODO: The next lines include code which supports a smooth
|
|
|
|
@# transition from old configurations without config.status.
|
|
|
|
@# This code can be removed after QEMU 1.7.
|
|
|
|
@if test -x config.status; then \
|
|
|
|
./config.status; \
|
|
|
|
else \
|
|
|
|
sed -n "/.*Configured with/s/[^:]*: //p" $@ | sh; \
|
|
|
|
fi
|
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
|
|
|
|
|
2016-06-01 11:44:21 +02:00
|
|
|
GENERATED_HEADERS = qemu-version.h config-host.h qemu-options.def
|
2014-06-18 08:43:28 +02:00
|
|
|
GENERATED_HEADERS += qmp-commands.h qapi-types.h qapi-visit.h qapi-event.h
|
|
|
|
GENERATED_SOURCES += qmp-marshal.c qapi-types.c qapi-visit.c qapi-event.c
|
qapi: New QMP command query-qmp-schema for QMP introspection
qapi/introspect.json defines the introspection schema. It's designed
for QMP introspection, but should do for similar uses, such as QGA.
The introspection schema does not reflect all the rules and
restrictions that apply to QAPI schemata. A valid QAPI schema has an
introspection value conforming to the introspection schema, but the
converse is not true.
Introspection lowers away a number of schema details, and makes
implicit things explicit:
* The built-in types are declared with their JSON type.
All integer types are mapped to 'int', because how many bits we use
internally is an implementation detail. It could be pressed into
external interface service as very approximate range information,
but that's a bad idea. If we need range information, we better do
it properly.
* Implicit type definitions are made explicit, and given
auto-generated names:
- Array types, named by appending "List" to the name of their
element type, like in generated C.
- The enumeration types implicitly defined by simple union types,
named by appending "Kind" to the name of their simple union type,
like in generated C.
- Types that don't occur in generated C. Their names start with ':'
so they don't clash with the user's names.
* All type references are by name.
* The struct and union types are generalized into an object type.
* Base types are flattened.
* Commands take a single argument and return a single result.
Dictionary argument or list result is an implicit type definition.
The empty object type is used when a command takes no arguments or
produces no results.
The argument is always of object type, but the introspection schema
doesn't reflect that.
The 'gen': false directive is omitted as implementation detail.
The 'success-response' directive is omitted as well for now, even
though it's not an implementation detail, because it's not used by
QMP.
* Events carry a single data value.
Implicit type definition and empty object type use, just like for
commands.
The value is of object type, but the introspection schema doesn't
reflect that.
* Types not used by commands or events are omitted.
Indirect use counts as use.
* Optional members have a default, which can only be null right now
Instead of a mandatory "optional" flag, we have an optional default.
No default means mandatory, default null means optional without
default value. Non-null is available for optional with default
(possible future extension).
* Clients should *not* look up types by name, because type names are
not ABI. Look up the command or event you're interested in, then
follow the references.
TODO Should we hide the type names to eliminate the temptation?
New generator scripts/qapi-introspect.py computes an introspection
value for its input, and generates a C variable holding it.
It can generate awfully long lines. Marked TODO.
A new test-qmp-input-visitor test case feeds its result for both
tests/qapi-schema/qapi-schema-test.json and qapi-schema.json to a
QmpInputVisitor to verify it actually conforms to the schema.
New QMP command query-qmp-schema takes its return value from that
variable. Its reply is some 85KiBytes for me right now.
If this turns out to be too much, we have a couple of options:
* We can use shorter names in the JSON. Not the QMP style.
* Optionally return the sub-schema for commands and events given as
arguments.
Right now qmp_query_schema() sends the string literal computed by
qmp-introspect.py. To compute sub-schema at run time, we'd have to
duplicate parts of qapi-introspect.py in C. Unattractive.
* Let clients cache the output of query-qmp-schema.
It changes only on QEMU upgrades, i.e. rarely. Provide a command
query-qmp-schema-hash. Clients can have a cache indexed by hash,
and re-query the schema only when they don't have it cached. Even
simpler: put the hash in the QMP greeting.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2015-09-16 13:06:28 +02:00
|
|
|
GENERATED_HEADERS += qmp-introspect.h
|
|
|
|
GENERATED_SOURCES += qmp-introspect.c
|
2012-12-14 20:13:09 +01:00
|
|
|
|
|
|
|
GENERATED_HEADERS += trace/generated-tracers.h
|
2014-05-27 15:02:14 +02:00
|
|
|
ifeq ($(findstring dtrace,$(TRACE_BACKENDS)),dtrace)
|
2012-12-14 20:13:09 +01:00
|
|
|
GENERATED_HEADERS += trace/generated-tracers-dtrace.h
|
2012-03-06 19:50:38 +01:00
|
|
|
endif
|
2012-12-14 20:13:09 +01:00
|
|
|
GENERATED_SOURCES += trace/generated-tracers.c
|
2012-03-06 19:50:38 +01:00
|
|
|
|
2014-05-30 14:12:13 +02:00
|
|
|
GENERATED_HEADERS += trace/generated-tcg-tracers.h
|
|
|
|
|
2014-05-30 14:12:01 +02:00
|
|
|
GENERATED_HEADERS += trace/generated-helpers-wrappers.h
|
2014-05-30 14:11:50 +02:00
|
|
|
GENERATED_HEADERS += trace/generated-helpers.h
|
2014-05-30 14:11:56 +02:00
|
|
|
GENERATED_SOURCES += trace/generated-helpers.c
|
2014-05-30 14:11:50 +02:00
|
|
|
|
2014-05-27 15:02:14 +02:00
|
|
|
ifeq ($(findstring ust,$(TRACE_BACKENDS)),ust)
|
2014-01-30 04:47:56 +01:00
|
|
|
GENERATED_HEADERS += trace/generated-ust-provider.h
|
|
|
|
GENERATED_SOURCES += trace/generated-ust.c
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:27:02 +02:00
|
|
|
GENERATED_HEADERS += module_block.h
|
|
|
|
|
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: ;
|
|
|
|
|
2008-09-24 03:13:40 +02:00
|
|
|
.PHONY: all clean cscope distclean dvi html info install install-doc \
|
2016-06-01 11:44:20 +02:00
|
|
|
pdf recurse-all speed test 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
|
|
|
|
2012-01-26 15:42:24 +01:00
|
|
|
HELPERS-$(CONFIG_LINUX) = qemu-bridge-helper$(EXESUF)
|
|
|
|
|
2006-04-23 19:57:59 +02:00
|
|
|
ifdef BUILD_DOCS
|
2016-10-06 16:12:11 +02:00
|
|
|
DOCS=qemu-doc.html qemu.1 qemu-img.1 qemu-nbd.8 qemu-ga.8
|
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
|
2006-04-23 19:57:59 +02:00
|
|
|
else
|
|
|
|
DOCS=
|
|
|
|
endif
|
2003-05-25 18:41:18 +02:00
|
|
|
|
2011-09-15 22:45:35 +02:00
|
|
|
SUBDIR_MAKEFLAGS=$(if $(V),,--no-print-directory) BUILD_DIR=$(BUILD_DIR)
|
2009-10-07 02:41:02 +02:00
|
|
|
SUBDIR_DEVICES_MAK=$(patsubst %, %/config-devices.mak, $(TARGET_DIRS))
|
2013-02-21 16:26:46 +01:00
|
|
|
SUBDIR_DEVICES_MAK_DEP=$(patsubst %, %-config-devices.mak.d, $(TARGET_DIRS))
|
2009-10-07 02:41:02 +02:00
|
|
|
|
2012-09-14 19:02:30 +02:00
|
|
|
ifeq ($(SUBDIR_DEVICES_MAK),)
|
|
|
|
config-all-devices.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
|
2009-10-07 02:41:02 +02:00
|
|
|
config-all-devices.mak: $(SUBDIR_DEVICES_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)
|
|
|
|
|
2016-06-07 13:25:58 +02:00
|
|
|
%/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh
|
2015-03-12 16:00:05 +01:00
|
|
|
$(call quiet-command, \
|
2016-10-04 18:27:21 +02:00
|
|
|
$(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.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; \
|
|
|
|
echo "Run \"make defconfig\" to regenerate."; \
|
|
|
|
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 \
|
|
|
|
util-obj-y \
|
|
|
|
qga-obj-y \
|
2014-09-08 11:17:48 +02:00
|
|
|
ivshmem-client-obj-y \
|
|
|
|
ivshmem-server-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 \
|
|
|
|
crypto-aes-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 \
|
|
|
|
common-obj-m)
|
2014-02-10 07:48:52 +01:00
|
|
|
|
|
|
|
ifneq ($(wildcard config-host.mak),)
|
2016-06-01 04:23:31 +02:00
|
|
|
include $(SRC_PATH)/tests/Makefile.include
|
2012-12-21 08:34:49 +01:00
|
|
|
endif
|
|
|
|
|
2014-02-10 07:48:56 +01:00
|
|
|
all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all modules
|
2006-05-13 18:54:03 +02:00
|
|
|
|
2016-06-01 11:44:21 +02:00
|
|
|
qemu-version.h: FORCE
|
|
|
|
$(call quiet-command, \
|
|
|
|
(cd $(SRC_PATH); \
|
|
|
|
printf '#define QEMU_PKGVERSION '; \
|
|
|
|
if test -n "$(PKGVERSION)"; then \
|
|
|
|
printf '"$(PKGVERSION)"\n'; \
|
|
|
|
else \
|
|
|
|
if test -d .git; then \
|
|
|
|
printf '" ('; \
|
|
|
|
git describe --match 'v*' 2>/dev/null | tr -d '\n'; \
|
|
|
|
if ! git diff-index --quiet HEAD &>/dev/null; then \
|
|
|
|
printf -- '-dirty'; \
|
|
|
|
fi; \
|
|
|
|
printf ')"\n'; \
|
|
|
|
else \
|
|
|
|
printf '""\n'; \
|
|
|
|
fi; \
|
|
|
|
fi) > $@.tmp)
|
2016-06-14 20:07:34 +02:00
|
|
|
$(call quiet-command, cmp -s $@ $@.tmp || mv $@.tmp $@)
|
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
|
|
|
|
2008-05-28 18:44:57 +02:00
|
|
|
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
|
2013-02-21 16:26:47 +01:00
|
|
|
SOFTMMU_SUBDIR_RULES=$(filter %-softmmu,$(SUBDIR_RULES))
|
|
|
|
|
2014-02-27 21:28:03 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(block-obj-y)
|
2015-09-02 11:57:27 +02:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(crypto-obj-y)
|
2015-02-27 17:19:33 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): $(io-obj-y)
|
2013-02-21 16:26:47 +01:00
|
|
|
$(SOFTMMU_SUBDIR_RULES): config-all-devices.mak
|
2008-05-28 18:44:57 +02:00
|
|
|
|
2012-05-29 12:41:34 +02:00
|
|
|
subdir-%:
|
2009-05-07 03:00:31 +02:00
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C $* V="$(V)" TARGET_DIR="$*/" all,)
|
2006-05-13 15:55:08 +02:00
|
|
|
|
2012-09-25 16:04:58 +02:00
|
|
|
subdir-pixman: pixman/Makefile
|
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pixman V="$(V)" all,)
|
|
|
|
|
|
|
|
pixman/Makefile: $(SRC_PATH)/pixman/configure
|
2013-01-04 10:15:53 +01:00
|
|
|
(cd pixman; CFLAGS="$(CFLAGS) -fPIC $(extra_cflags) $(extra_ldflags)" $(SRC_PATH)/pixman/configure $(AUTOCONF_HOST) --disable-gtk --disable-shared --enable-static)
|
2012-09-25 16:04:58 +02:00
|
|
|
|
|
|
|
$(SRC_PATH)/pixman/configure:
|
|
|
|
(cd $(SRC_PATH)/pixman; autoreconf -v --install)
|
|
|
|
|
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
|
|
|
|
|
|
|
subdir-dtc: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
|
|
|
|
|
|
|
dtc/%:
|
|
|
|
mkdir -p $@
|
|
|
|
|
2015-09-18 12:01:35 +02:00
|
|
|
$(SUBDIR_RULES): libqemuutil.a libqemustub.a $(common-obj-y) $(qom-obj-y) $(crypto-aes-obj-$(CONFIG_USER_ONLY))
|
2009-09-27 18:26:02 +02:00
|
|
|
|
2009-07-31 14:18:32 +02:00
|
|
|
ROMSUBDIR_RULES=$(patsubst %,romsubdir-%, $(ROMS))
|
2016-08-05 10:23:46 +02:00
|
|
|
# Only keep -O and -g cflags
|
2009-07-31 14:18:32 +02:00
|
|
|
romsubdir-%:
|
2016-08-05 10:23:46 +02:00
|
|
|
$(call quiet-command,$(MAKE) $(SUBDIR_MAKEFLAGS) -C pc-bios/$* V="$(V)" TARGET_DIR="$*/" CFLAGS="$(filter -O% -g%,$(CFLAGS))",)
|
2009-07-31 14:18:32 +02:00
|
|
|
|
|
|
|
ALL_SUBDIRS=$(TARGET_DIRS) $(patsubst %,pc-bios/%, $(ROMS))
|
|
|
|
|
|
|
|
recurse-all: $(SUBDIR_RULES) $(ROMSUBDIR_RULES)
|
2006-08-01 18:21:11 +02:00
|
|
|
|
2015-02-18 13:59:37 +01:00
|
|
|
$(BUILD_DIR)/version.o: $(SRC_PATH)/version.rc config-host.h | $(BUILD_DIR)/version.lo
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,$(WINDRES) -I$(BUILD_DIR) -o $@ $<,"RC","version.o")
|
2015-02-18 13:59:37 +01:00
|
|
|
$(BUILD_DIR)/version.lo: $(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.lo")
|
2013-02-25 23:31:13 +01:00
|
|
|
|
2013-05-01 18:30:15 +02:00
|
|
|
Makefile: $(version-obj-y) $(version-lobj-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
|
|
|
|
|
|
|
libqemustub.a: $(stub-obj-y)
|
2014-08-07 04:34:41 +02:00
|
|
|
libqemuutil.a: $(util-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
|
|
|
|
2010-01-20 20:54:18 +01:00
|
|
|
qemu-img.o: qemu-img-cmds.h
|
2009-06-07 01:42:17 +02:00
|
|
|
|
2016-02-10 19:41:01 +01:00
|
|
|
qemu-img$(EXESUF): qemu-img.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
|
|
|
|
qemu-nbd$(EXESUF): qemu-nbd.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
|
|
|
|
qemu-io$(EXESUF): qemu-io.o $(block-obj-y) $(crypto-obj-y) $(io-obj-y) $(qom-obj-y) libqemuutil.a libqemustub.a
|
2009-04-05 20:41:23 +02:00
|
|
|
|
2016-03-07 21:25:19 +01:00
|
|
|
qemu-bridge-helper$(EXESUF): qemu-bridge-helper.o libqemuutil.a libqemustub.a
|
2012-01-26 15:42:24 +01:00
|
|
|
|
2015-11-30 17:14:29 +01:00
|
|
|
fsdev/virtfs-proxy-helper$(EXESUF): fsdev/virtfs-proxy-helper.o fsdev/9p-marshal.o fsdev/9p-iov-marshal.o libqemuutil.a libqemustub.a
|
2011-12-14 09:28:42 +01:00
|
|
|
fsdev/virtfs-proxy-helper$(EXESUF): LIBS += -lcap
|
|
|
|
|
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
|
|
|
|
2011-12-28 11:26:58 +01:00
|
|
|
gen-out-type = $(subst .,-,$(suffix $@))
|
2011-12-27 15:02:16 +01:00
|
|
|
|
2012-08-10 15:08:42 +02:00
|
|
|
qapi-py = $(SRC_PATH)/scripts/qapi.py $(SRC_PATH)/scripts/ordereddict.py
|
|
|
|
|
2012-07-28 21:11:24 +02:00
|
|
|
qga/qapi-generated/qga-qapi-types.c qga/qapi-generated/qga-qapi-types.h :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2012-07-28 21:11:24 +02:00
|
|
|
qga/qapi-generated/qga-qapi-visit.c qga/qapi-generated/qga-qapi-visit.h :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2012-07-28 21:11:24 +02:00
|
|
|
qga/qapi-generated/qga-qmp-commands.h qga/qapi-generated/qga-qmp-marshal.c :\
|
2012-10-24 11:26:49 +02:00
|
|
|
$(SRC_PATH)/qga/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o qga/qapi-generated -p "qga-" $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2011-07-19 22:41:55 +02:00
|
|
|
|
2014-06-18 08:43:26 +02:00
|
|
|
qapi-modules = $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/qapi/common.json \
|
2014-06-18 08:43:32 +02:00
|
|
|
$(SRC_PATH)/qapi/block.json $(SRC_PATH)/qapi/block-core.json \
|
2015-11-19 18:18:39 +01:00
|
|
|
$(SRC_PATH)/qapi/event.json $(SRC_PATH)/qapi/introspect.json \
|
2016-02-04 19:29:17 +01:00
|
|
|
$(SRC_PATH)/qapi/crypto.json $(SRC_PATH)/qapi/rocker.json \
|
|
|
|
$(SRC_PATH)/qapi/trace.json
|
2014-06-18 08:43:26 +02:00
|
|
|
|
2011-11-16 22:58:18 +01:00
|
|
|
qapi-types.c qapi-types.h :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-types.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-types.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." -b $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2011-11-16 22:58:18 +01:00
|
|
|
qapi-visit.c qapi-visit.h :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-visit.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-visit.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." -b $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2014-06-18 08:43:28 +02:00
|
|
|
qapi-event.c qapi-event.h :\
|
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-event.py $(qapi-py)
|
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-event.py \
|
2015-04-02 13:32:16 +02:00
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2011-11-16 22:58:18 +01:00
|
|
|
qmp-commands.h qmp-marshal.c :\
|
2014-06-18 08:43:26 +02:00
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
2014-05-02 15:52:24 +02:00
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-commands.py \
|
2016-09-12 11:19:04 +02:00
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
qapi: New QMP command query-qmp-schema for QMP introspection
qapi/introspect.json defines the introspection schema. It's designed
for QMP introspection, but should do for similar uses, such as QGA.
The introspection schema does not reflect all the rules and
restrictions that apply to QAPI schemata. A valid QAPI schema has an
introspection value conforming to the introspection schema, but the
converse is not true.
Introspection lowers away a number of schema details, and makes
implicit things explicit:
* The built-in types are declared with their JSON type.
All integer types are mapped to 'int', because how many bits we use
internally is an implementation detail. It could be pressed into
external interface service as very approximate range information,
but that's a bad idea. If we need range information, we better do
it properly.
* Implicit type definitions are made explicit, and given
auto-generated names:
- Array types, named by appending "List" to the name of their
element type, like in generated C.
- The enumeration types implicitly defined by simple union types,
named by appending "Kind" to the name of their simple union type,
like in generated C.
- Types that don't occur in generated C. Their names start with ':'
so they don't clash with the user's names.
* All type references are by name.
* The struct and union types are generalized into an object type.
* Base types are flattened.
* Commands take a single argument and return a single result.
Dictionary argument or list result is an implicit type definition.
The empty object type is used when a command takes no arguments or
produces no results.
The argument is always of object type, but the introspection schema
doesn't reflect that.
The 'gen': false directive is omitted as implementation detail.
The 'success-response' directive is omitted as well for now, even
though it's not an implementation detail, because it's not used by
QMP.
* Events carry a single data value.
Implicit type definition and empty object type use, just like for
commands.
The value is of object type, but the introspection schema doesn't
reflect that.
* Types not used by commands or events are omitted.
Indirect use counts as use.
* Optional members have a default, which can only be null right now
Instead of a mandatory "optional" flag, we have an optional default.
No default means mandatory, default null means optional without
default value. Non-null is available for optional with default
(possible future extension).
* Clients should *not* look up types by name, because type names are
not ABI. Look up the command or event you're interested in, then
follow the references.
TODO Should we hide the type names to eliminate the temptation?
New generator scripts/qapi-introspect.py computes an introspection
value for its input, and generates a C variable holding it.
It can generate awfully long lines. Marked TODO.
A new test-qmp-input-visitor test case feeds its result for both
tests/qapi-schema/qapi-schema-test.json and qapi-schema.json to a
QmpInputVisitor to verify it actually conforms to the schema.
New QMP command query-qmp-schema takes its return value from that
variable. Its reply is some 85KiBytes for me right now.
If this turns out to be too much, we have a couple of options:
* We can use shorter names in the JSON. Not the QMP style.
* Optionally return the sub-schema for commands and events given as
arguments.
Right now qmp_query_schema() sends the string literal computed by
qmp-introspect.py. To compute sub-schema at run time, we'd have to
duplicate parts of qapi-introspect.py in C. Unattractive.
* Let clients cache the output of query-qmp-schema.
It changes only on QEMU upgrades, i.e. rarely. Provide a command
query-qmp-schema-hash. Clients can have a cache indexed by hash,
and re-query the schema only when they don't have it cached. Even
simpler: put the hash in the QMP greeting.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2015-09-16 13:06:28 +02:00
|
|
|
qmp-introspect.h qmp-introspect.c :\
|
|
|
|
$(qapi-modules) $(SRC_PATH)/scripts/qapi-introspect.py $(qapi-py)
|
|
|
|
$(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/qapi-introspect.py \
|
|
|
|
$(gen-out-type) -o "." $<, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2011-09-02 19:34:47 +02:00
|
|
|
|
2012-07-28 21:11:24 +02:00
|
|
|
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
|
2012-05-29 12:41:34 +02:00
|
|
|
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
|
2011-08-11 22:38:12 +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$(EXESUF): $(qga-obj-y) libqemuutil.a libqemustub.a
|
|
|
|
$(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
|
|
|
|
|
2016-03-07 21:25:19 +01:00
|
|
|
ivshmem-client$(EXESUF): $(ivshmem-client-obj-y) libqemuutil.a libqemustub.a
|
2014-09-08 11:17:48 +02:00
|
|
|
$(call LINK, $^)
|
|
|
|
ivshmem-server$(EXESUF): $(ivshmem-server-obj-y) libqemuutil.a libqemustub.a
|
|
|
|
$(call LINK, $^)
|
|
|
|
|
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
|
|
|
|
2003-02-18 23:55:36 +01:00
|
|
|
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
|
2014-03-17 02:35:22 +01:00
|
|
|
find . \( -name '*.l[oa]' -o -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name '*.[oda]' \) -type f -exec rm {} +
|
qemu-ga: Add Windows VSS provider and requester as DLL
Adds VSS provider and requester as a qga-vss.dll, which is loaded by
Windows VSS service as well as by qemu-ga.
"provider.cpp" implements a basic stub of a software VSS provider.
Currently, this module only relays a frozen event from VSS service to the
agent, and thaw event from the agent to VSS service, to block VSS process
to keep the system frozen while snapshots are taken at the host.
To register the provider to the guest system as COM+ application, the type
library (.tlb) for qga-vss.dll is required. To build it from COM IDL (.idl),
VisualC++, MIDL and stdole2.tlb in Windows SDK are required. This patch also
adds pre-compiled .tlb file in the repository in order to enable
cross-compile qemu-ga.exe for Windows with VSS support.
"requester.cpp" provides the VSS requester to kick the VSS snapshot process.
Qemu-ga.exe works without the DLL, although fsfreeze features are disabled.
These functions are only supported in Windows 2003 or later. In older
systems, fsfreeze features are disabled.
In several versions of Windows which don't support attribute
VSS_VOLSNAP_ATTR_NO_AUTORECOVERY, DoSnapshotSet fails with error
VSS_E_OBJECT_NOT_FOUND. In this patch, we just ignore this error.
To solve this fundamentally, we need a framework to handle mount writable
snapshot on guests, which is required by VSS auto-recovery feature
(cleanup phase after a snapshot is taken).
Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
2013-08-07 17:40:18 +02:00
|
|
|
rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~
|
2013-07-25 18:24:58 +02:00
|
|
|
rm -f fsdev/*.pod
|
|
|
|
rm -rf .libs */.libs
|
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
|
2012-04-18 20:15:39 +02:00
|
|
|
@# May not be present in GENERATED_HEADERS
|
2012-12-14 20:13:09 +01:00
|
|
|
rm -f trace/generated-tracers-dtrace.dtrace*
|
|
|
|
rm -f trace/generated-tracers-dtrace.h*
|
2012-04-18 20:15:39 +02:00
|
|
|
rm -f $(foreach f,$(GENERATED_HEADERS),$(f) $(f)-timestamp)
|
|
|
|
rm -f $(foreach f,$(GENERATED_SOURCES),$(f) $(f)-timestamp)
|
2012-06-09 09:08:39 +02:00
|
|
|
rm -rf qapi-generated
|
2012-07-28 21:11:24 +02:00
|
|
|
rm -rf qga/qapi-generated
|
2013-01-15 08:47:26 +01:00
|
|
|
for d in $(ALL_SUBDIRS); do \
|
2009-11-13 10:51:05 +01:00
|
|
|
if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \
|
2010-10-26 17:53:41 +02:00
|
|
|
rm -f $$d/qemu-options.def; \
|
2003-08-10 23:39:31 +02:00
|
|
|
done
|
2016-05-17 13:27:31 +02:00
|
|
|
rm -f $(SUBDIR_DEVICES_MAK) 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,%,$@)"
|
|
|
|
|
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
|
2014-12-15 11:19:46 +01:00
|
|
|
rm -f config-all-devices.mak config-all-disas.mak config.status
|
|
|
|
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
|
2011-04-13 08:42:16 +02:00
|
|
|
rm -f qemu-doc.info qemu-doc.aux qemu-doc.cp qemu-doc.cps qemu-doc.dvi
|
|
|
|
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
|
|
|
|
rm -f qemu-doc.vr
|
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
|
2012-10-24 11:16:01 +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 pixman/config.log; then $(MAKE) -C pixman distclean; fi
|
|
|
|
if test -f dtc/version_gen.h; then $(MAKE) $(DTC_MAKE_ARGS) clean; fi
|
2003-03-07 00:23:54 +01:00
|
|
|
|
2004-12-12 23:18:34 +01:00
|
|
|
KEYMAPS=da en-gb et fr fr-ch is lt modifiers no pt-br sv \
|
|
|
|
ar de en-us fi fr-be hr it lv nl pl ru th \
|
2012-06-08 20:06:25 +02:00
|
|
|
common de-ch es fo fr-ca hu ja mk nl-be 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
|
2016-07-04 17:22:17 +02:00
|
|
|
BLOBS=bios.bin bios-256k.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 \
|
2016-01-23 17:02:12 +01:00
|
|
|
acpi-dsdt.aml \
|
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 \
|
2013-06-07 20:24:17 +02:00
|
|
|
qemu-icon.bmp qemu_logo_no_text.svg \
|
2011-03-14 11:29:19 +01:00
|
|
|
bamboo.dtb petalogix-s3adsp1800.dtb petalogix-ml605.dtb \
|
2016-05-23 20:11:33 +02:00
|
|
|
multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin \
|
2013-04-22 21:10:50 +02:00
|
|
|
s390-ccw.img \
|
2016-10-22 11:46:34 +02:00
|
|
|
spapr-rtas.bin slof.bin skiboot.lid \
|
2014-07-04 21:43:18 +02:00
|
|
|
palcode-clipper \
|
|
|
|
u-boot.e500
|
2008-11-27 16:45:16 +01:00
|
|
|
else
|
|
|
|
BLOBS=
|
|
|
|
endif
|
|
|
|
|
2006-05-01 01:54:18 +02:00
|
|
|
install-doc: $(DOCS)
|
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)"
|
2016-09-20 11:01:34 +02:00
|
|
|
$(INSTALL_DATA) $(SRC_PATH)/docs/qmp-commands.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"
|
|
|
|
ifneq ($(TOOLS),)
|
|
|
|
$(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
|
2015-08-27 01:34:59 +02:00
|
|
|
ifneq (,$(findstring qemu-ga,$(TOOLS)))
|
|
|
|
$(INSTALL_DATA) qemu-ga.8 "$(DESTDIR)$(mandir)/man8"
|
|
|
|
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
|
|
|
|
|
2012-05-02 18:07:30 +02:00
|
|
|
|
2015-05-26 14:54:06 +02:00
|
|
|
install: all $(if $(BUILD_DOCS),install-doc) \
|
2013-05-18 07:13:14 +02:00
|
|
|
install-datadir install-localstatedir
|
2007-10-20 20:29:34 +02:00
|
|
|
ifneq ($(TOOLS),)
|
2015-11-23 22:48:58 +01:00
|
|
|
$(call install-prog,$(subst qemu-ga,qemu-ga$(EXESUF),$(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
|
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
|
2013-02-20 14:43:24 +01:00
|
|
|
endif
|
|
|
|
ifeq ($(CONFIG_GTK),y)
|
|
|
|
$(MAKE) -C po $@
|
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-08-10 23:39:31 +02:00
|
|
|
for d in $(TARGET_DIRS); do \
|
2014-01-20 12:21:54 +01:00
|
|
|
$(MAKE) $(SUBDIR_MAKEFLAGS) TARGET_DIR=$$d/ -C $$d $@ || exit 1 ; \
|
2003-08-10 23:39:31 +02:00
|
|
|
done
|
2003-03-22 18:31:19 +01:00
|
|
|
|
2003-03-01 18:13:26 +01:00
|
|
|
# various test targets
|
2007-11-14 11:34:57 +01:00
|
|
|
test speed: all
|
2012-01-10 20:10:42 +01:00
|
|
|
$(MAKE) -C tests/tcg $@
|
2003-02-18 23:55:36 +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
|
|
|
|
2015-01-09 11:40:23 +01:00
|
|
|
ui/console-gl.o: $(SRC_PATH)/ui/console-gl.c \
|
|
|
|
ui/shader/texture-blit-vert.h ui/shader/texture-blit-frag.h
|
|
|
|
|
2003-03-23 21:17:16 +01:00
|
|
|
# documentation
|
2010-03-04 22:21:02 +01:00
|
|
|
MAKEINFO=makeinfo
|
|
|
|
MAKEINFOFLAGS=--no-headers --no-split --number-sections
|
2010-01-29 23:16:50 +01:00
|
|
|
TEXIFLAG=$(if $(V),,--quiet)
|
|
|
|
%.dvi: %.texi
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<,"GEN","$@")
|
2010-01-29 23:16:50 +01:00
|
|
|
|
2004-04-04 17:21:17 +02:00
|
|
|
%.html: %.texi
|
2012-03-27 19:15:27 +02:00
|
|
|
$(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2003-03-23 21:17:16 +01:00
|
|
|
|
2006-05-01 00:51:54 +02:00
|
|
|
%.info: %.texi
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,$(MAKEINFO) $< -o $@,"GEN","$@")
|
2006-05-01 00:51:54 +02:00
|
|
|
|
2010-01-29 23:16:50 +01:00
|
|
|
%.pdf: %.texi
|
2016-10-04 18:27:21 +02:00
|
|
|
$(call quiet-command,texi2pdf $(TEXIFLAG) -I . $<,"GEN","$@")
|
2009-03-28 07:44:27 +01: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
|
|
|
|
2015-09-10 17:39:01 +02:00
|
|
|
qemu.1: qemu-doc.texi qemu-options.texi qemu-monitor.texi qemu-monitor-info.texi
|
2009-04-05 19:40:46 +02:00
|
|
|
$(call quiet-command, \
|
2011-01-20 21:54:21 +01:00
|
|
|
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu.pod && \
|
2012-03-19 23:25:57 +01:00
|
|
|
$(POD2MAN) --section=1 --center=" " --release=" " qemu.pod > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2016-06-17 16:44:09 +02:00
|
|
|
qemu.1: qemu-option-trace.texi
|
2003-10-01 02:13:48 +02:00
|
|
|
|
2016-06-17 16:44:14 +02:00
|
|
|
qemu-img.1: qemu-img.texi qemu-option-trace.texi qemu-img-cmds.texi
|
2009-04-05 19:40:46 +02:00
|
|
|
$(call quiet-command, \
|
2011-01-20 21:54:21 +01:00
|
|
|
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-img.pod && \
|
2012-03-19 23:25:57 +01:00
|
|
|
$(POD2MAN) --section=1 --center=" " --release=" " qemu-img.pod > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2004-11-15 23:57:26 +01:00
|
|
|
|
2011-12-14 09:28:47 +01:00
|
|
|
fsdev/virtfs-proxy-helper.1: fsdev/virtfs-proxy-helper.texi
|
|
|
|
$(call quiet-command, \
|
|
|
|
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< fsdev/virtfs-proxy-helper.pod && \
|
2012-03-19 23:25:57 +01:00
|
|
|
$(POD2MAN) --section=1 --center=" " --release=" " fsdev/virtfs-proxy-helper.pod > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2011-12-14 09:28:47 +01:00
|
|
|
|
2016-06-17 16:44:12 +02:00
|
|
|
qemu-nbd.8: qemu-nbd.texi qemu-option-trace.texi
|
2009-04-05 19:40:46 +02:00
|
|
|
$(call quiet-command, \
|
2011-01-20 21:54:21 +01:00
|
|
|
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-nbd.pod && \
|
2012-03-19 23:25:57 +01:00
|
|
|
$(POD2MAN) --section=8 --center=" " --release=" " qemu-nbd.pod > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2015-03-03 00:29:07 +01:00
|
|
|
|
2015-08-27 01:34:59 +02:00
|
|
|
qemu-ga.8: qemu-ga.texi
|
|
|
|
$(call quiet-command, \
|
|
|
|
perl -Ww -- $(SRC_PATH)/scripts/texi2pod.pl $< qemu-ga.pod && \
|
|
|
|
$(POD2MAN) --section=8 --center=" " --release=" " qemu-ga.pod > $@, \
|
2016-10-04 18:27:21 +02:00
|
|
|
"GEN","$@")
|
2015-08-27 01:34:59 +02:00
|
|
|
|
2016-10-06 16:12:11 +02:00
|
|
|
dvi: qemu-doc.dvi
|
|
|
|
html: qemu-doc.html
|
|
|
|
info: qemu-doc.info
|
|
|
|
pdf: qemu-doc.pdf
|
2006-05-14 14:07:53 +02:00
|
|
|
|
2010-01-29 23:16:50 +01:00
|
|
|
qemu-doc.dvi qemu-doc.html qemu-doc.info qemu-doc.pdf: \
|
2016-06-17 16:44:09 +02:00
|
|
|
qemu-img.texi qemu-nbd.texi qemu-options.texi qemu-option-trace.texi \
|
2015-09-10 17:39:01 +02:00
|
|
|
qemu-monitor.texi qemu-img-cmds.texi qemu-ga.texi \
|
|
|
|
qemu-monitor-info.texi
|
2008-09-24 03:13:40 +02: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
|
|
|
|
|
|
|
|
$(INSTALLER): $(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
|
2015-05-22 07:35:07 +02:00
|
|
|
ifneq ($(filter-out $(UNCHECKED_GOALS),$(MAKECMDGOALS)),$(if $(MAKECMDGOALS),,fail))
|
2012-07-18 01:58:20 +02:00
|
|
|
Makefile: $(GENERATED_HEADERS)
|
2012-09-16 22:07:13 +02:00
|
|
|
endif
|
2012-07-18 01:58:20 +02:00
|
|
|
|
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
|
2016-09-13 16:20:33 +02:00
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@echo 'Generic targets:'
|
|
|
|
@echo ' all - Build all'
|
|
|
|
@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 ''
|
|
|
|
@$(if $(TARGET_DIRS), \
|
|
|
|
echo 'Architecture specific targets:'; \
|
|
|
|
$(foreach t, $(TARGET_DIRS), \
|
|
|
|
printf " %-30s - Build for %s\\n" $(patsubst %,subdir-%,$(t)) $(t);) \
|
|
|
|
echo '')
|
|
|
|
@echo 'Cleaning targets:'
|
|
|
|
@echo ' clean - Remove most generated files but keep the config'
|
|
|
|
@echo ' distclean - Remove all generated files'
|
|
|
|
@echo ' dist - Build a distributable tarball'
|
|
|
|
@echo ''
|
|
|
|
@echo 'Test targets:'
|
|
|
|
@echo ' check - Run all tests (check-help for details)'
|
|
|
|
@echo ' docker - Help about targets running tests inside Docker containers'
|
|
|
|
@echo ''
|
|
|
|
@echo 'Documentation targets:'
|
|
|
|
@echo ' dvi html info pdf'
|
|
|
|
@echo ' - Build documentation in specified format'
|
|
|
|
@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
|
|
|
|
@echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
|