mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 05:51:36 +00:00
build: move qobject files to qobject/ and libqemuutil.a
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
baacf04799
commit
a372823a14
2
Makefile
2
Makefile
@ -206,7 +206,7 @@ $(SRC_PATH)/qapi-schema.json $(SRC_PATH)/scripts/qapi-commands.py $(qapi-py)
|
|||||||
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
|
QGALIB_GEN=$(addprefix qga/qapi-generated/, qga-qapi-types.h qga-qapi-visit.h qga-qmp-commands.h)
|
||||||
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
|
$(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
|
||||||
|
|
||||||
qemu-ga$(EXESUF): $(qga-obj-y) $(trace-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y) libqemuutil.a libqemustub.a
|
qemu-ga$(EXESUF): $(qga-obj-y) $(trace-obj-y) $(qapi-obj-y) $(version-obj-y) libqemuutil.a libqemustub.a
|
||||||
$(call LINK, $^)
|
$(call LINK, $^)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
@ -1,20 +1,13 @@
|
|||||||
#######################################################################
|
#######################################################################
|
||||||
# Stub library, linked in tools
|
# Common libraries for tools and emulators
|
||||||
stub-obj-y = stubs/
|
stub-obj-y = stubs/
|
||||||
|
util-obj-y = util/ qobject/
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Target-independent parts used in system and user emulation
|
# Target-independent parts used in system and user emulation
|
||||||
universal-obj-y =
|
universal-obj-y =
|
||||||
universal-obj-y += qemu-log.o
|
universal-obj-y += qemu-log.o
|
||||||
|
|
||||||
#######################################################################
|
|
||||||
# QObject
|
|
||||||
qobject-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
|
|
||||||
qobject-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o
|
|
||||||
qobject-obj-y += qerror.o
|
|
||||||
|
|
||||||
universal-obj-y += $(qobject-obj-y)
|
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# QOM
|
# QOM
|
||||||
qom-obj-y = qom/
|
qom-obj-y = qom/
|
||||||
@ -27,10 +20,6 @@ hw-core-obj-y += hw/
|
|||||||
|
|
||||||
universal-obj-y += $(hw-core-obj-y)
|
universal-obj-y += $(hw-core-obj-y)
|
||||||
|
|
||||||
#######################################################################
|
|
||||||
# util-obj-y is code depending on the OS (win32 vs posix)
|
|
||||||
util-obj-y += util/
|
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# coroutines
|
# coroutines
|
||||||
coroutine-obj-y = qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
|
coroutine-obj-y = qemu-coroutine.o qemu-coroutine-lock.o qemu-coroutine-io.o
|
||||||
@ -53,7 +42,7 @@ coroutine-obj-$(CONFIG_WIN32) += coroutine-win32.o
|
|||||||
|
|
||||||
block-obj-y = async.o thread-pool.o
|
block-obj-y = async.o thread-pool.o
|
||||||
block-obj-y += nbd.o block.o blockjob.o
|
block-obj-y += nbd.o block.o blockjob.o
|
||||||
block-obj-y += $(coroutine-obj-y) $(qobject-obj-y) $(version-obj-y)
|
block-obj-y += $(coroutine-obj-y) $(version-obj-y)
|
||||||
block-obj-y += main-loop.o iohandler.o qemu-timer.o
|
block-obj-y += main-loop.o iohandler.o qemu-timer.o
|
||||||
block-obj-$(CONFIG_POSIX) += aio-posix.o
|
block-obj-$(CONFIG_POSIX) += aio-posix.o
|
||||||
block-obj-$(CONFIG_WIN32) += aio-win32.o
|
block-obj-$(CONFIG_WIN32) += aio-win32.o
|
||||||
|
3
qobject/Makefile.objs
Normal file
3
qobject/Makefile.objs
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
util-obj-y = qint.o qstring.o qdict.o qlist.o qfloat.o qbool.o
|
||||||
|
util-obj-y += qjson.o json-lexer.o json-streamer.o json-parser.o
|
||||||
|
util-obj-y += qerror.o
|
@ -70,17 +70,17 @@ test-obj-y = tests/check-qint.o tests/check-qstring.o tests/check-qdict.o \
|
|||||||
tests/test-qmp-input-visitor.o tests/test-qmp-input-strict.o \
|
tests/test-qmp-input-visitor.o tests/test-qmp-input-strict.o \
|
||||||
tests/test-qmp-commands.o tests/test-visitor-serialization.o
|
tests/test-qmp-commands.o tests/test-visitor-serialization.o
|
||||||
|
|
||||||
test-qapi-obj-y = $(qobject-obj-y) $(qapi-obj-y)
|
test-qapi-obj-y = $(qapi-obj-y)
|
||||||
test-qapi-obj-y += tests/test-qapi-visit.o tests/test-qapi-types.o
|
test-qapi-obj-y += tests/test-qapi-visit.o tests/test-qapi-types.o
|
||||||
|
|
||||||
$(test-obj-y): QEMU_INCLUDES += -Itests
|
$(test-obj-y): QEMU_INCLUDES += -Itests
|
||||||
|
|
||||||
tests/check-qint$(EXESUF): tests/check-qint.o qint.o
|
tests/check-qint$(EXESUF): tests/check-qint.o libqemuutil.a
|
||||||
tests/check-qstring$(EXESUF): tests/check-qstring.o qstring.o
|
tests/check-qstring$(EXESUF): tests/check-qstring.o libqemuutil.a
|
||||||
tests/check-qdict$(EXESUF): tests/check-qdict.o qdict.o qfloat.o qint.o qstring.o qbool.o qlist.o
|
tests/check-qdict$(EXESUF): tests/check-qdict.o libqemuutil.a
|
||||||
tests/check-qlist$(EXESUF): tests/check-qlist.o qlist.o qint.o
|
tests/check-qlist$(EXESUF): tests/check-qlist.o libqemuutil.a
|
||||||
tests/check-qfloat$(EXESUF): tests/check-qfloat.o qfloat.o
|
tests/check-qfloat$(EXESUF): tests/check-qfloat.o libqemuutil.a
|
||||||
tests/check-qjson$(EXESUF): tests/check-qjson.o $(qobject-obj-y) libqemuutil.a libqemustub.a
|
tests/check-qjson$(EXESUF): tests/check-qjson.o libqemuutil.a libqemustub.a
|
||||||
tests/test-coroutine$(EXESUF): tests/test-coroutine.o $(block-obj-y) libqemuutil.a libqemustub.a
|
tests/test-coroutine$(EXESUF): tests/test-coroutine.o $(block-obj-y) libqemuutil.a libqemustub.a
|
||||||
tests/test-aio$(EXESUF): tests/test-aio.o $(block-obj-y) libqemuutil.a libqemustub.a
|
tests/test-aio$(EXESUF): tests/test-aio.o $(block-obj-y) libqemuutil.a libqemustub.a
|
||||||
tests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(block-obj-y) libqemuutil.a libqemustub.a
|
tests/test-thread-pool$(EXESUF): tests/test-thread-pool.o $(block-obj-y) libqemuutil.a libqemustub.a
|
||||||
|
Loading…
Reference in New Issue
Block a user