summaryrefslogtreecommitdiff
path: root/qom/Makefile.objs
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2012-05-22 13:42:53 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2012-06-07 09:21:12 +0200
commit7f07b9cbc51066ddaa133b29389e225612aaced2 (patch)
tree67c007537b3323e89f834f7d564ea6e1b6693146 /qom/Makefile.objs
parent99100dc3b55126fc60fbbfb854d5aab25ab5dafd (diff)
downloadqemu-7f07b9cbc51066ddaa133b29389e225612aaced2.tar.gz
build: adapt qom/Makefile and move it to Makefile.objs
qom/ already used a separate makefile. Convert it to use relative paths, and make it declare both common-obj-y and user-obj-y. This way, the upper makefiles do not need to know that some QOM files are compiled twice. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'qom/Makefile.objs')
-rw-r--r--qom/Makefile.objs4
1 files changed, 4 insertions, 0 deletions
diff --git a/qom/Makefile.objs b/qom/Makefile.objs
new file mode 100644
index 0000000000..5ef060a401
--- /dev/null
+++ b/qom/Makefile.objs
@@ -0,0 +1,4 @@
+qom-obj-y = object.o container.o qom-qobject.o
+qom-obj-twice-y = cpu.o
+common-obj-y = $(qom-obj-twice-y)
+user-obj-y = $(qom-obj-twice-y)