summaryrefslogtreecommitdiffstats
path: root/qom
diff options
context:
space:
mode:
authorDaniel P. Berrange2015-09-02 12:18:16 +0200
committerDaniel P. Berrange2015-09-15 15:35:39 +0200
commit0c7012e0558e4312e575fd4c70652d8ef2265ff7 (patch)
tree94301efe545752426e5bab1a6f18abab31af3a4f /qom
parentcrypto: move crypto objects out of libqemuutil.la (diff)
downloadqemu-0c7012e0558e4312e575fd4c70652d8ef2265ff7.tar.gz
qemu-0c7012e0558e4312e575fd4c70652d8ef2265ff7.tar.xz
qemu-0c7012e0558e4312e575fd4c70652d8ef2265ff7.zip
qom: allow QOM to be linked into tools binaries
The qom objects are currently added to common-obj-y which is only linked into the system emulators. The later crypto patches will depend on QOM infrastructure and will also be used from tools binaries. Thus the QOM objects are moved into a new qom-obj-y variable which can be referenced when linking tools, system emulators and tests. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Diffstat (limited to 'qom')
-rw-r--r--qom/Makefile.objs7
1 files changed, 4 insertions, 3 deletions
diff --git a/qom/Makefile.objs b/qom/Makefile.objs
index 985003bd03..516349eec3 100644
--- a/qom/Makefile.objs
+++ b/qom/Makefile.objs
@@ -1,3 +1,4 @@
-common-obj-y = object.o container.o qom-qobject.o
-common-obj-y += cpu.o
-common-obj-y += object_interfaces.o
+qom-obj-y = object.o container.o qom-qobject.o
+qom-obj-y += object_interfaces.o
+
+common-obj-y = cpu.o