7f07b9cbc5
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>
5 lines
137 B
Makefile
5 lines
137 B
Makefile
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)
|