aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2020-01-18 15:06:15 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2020-01-24 20:59:08 +0100
commite4f9487b9598c3eeda83daa18364719e7a4a43ec (patch)
tree1c86799c8e3bfd9b1c5d40f1fb46539091bdb7aa
parent7ba4a4d328a1341e49773c66eda9baa19c503b96 (diff)
downloadqemu-e4f9487b9598c3eeda83daa18364719e7a4a43ec.zip
qemu-e4f9487b9598c3eeda83daa18364719e7a4a43ec.tar.gz
qemu-e4f9487b9598c3eeda83daa18364719e7a4a43ec.tar.bz2
Makefile: Clarify all the codebase requires qom/ objects
QEMU user-mode also requires the qom/ objects, it is not only used by "system emulation and qemu-img". As we will use a big if() block, move it upper in the "Common libraries for tools and emulators" section. Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200118140619.26333-3-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r--Makefile.objs6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.objs b/Makefile.objs
index 7c1e50f..5aae561 100644
--- a/Makefile.objs
+++ b/Makefile.objs
@@ -2,6 +2,7 @@
# Common libraries for tools and emulators
stub-obj-y = stubs/
util-obj-y = crypto/ util/ qobject/ qapi/
+qom-obj-y = qom/
chardev-obj-y = chardev/
@@ -27,11 +28,6 @@ block-obj-m = block/
crypto-obj-y = crypto/
#######################################################################
-# qom-obj-y is code used by both qemu system emulation and qemu-img
-
-qom-obj-y = qom/
-
-#######################################################################
# io-obj-y is code used by both qemu system emulation and qemu-img
io-obj-y = io/