00ca24ff9e
Having to include qapi-commands.h just for qmp_init_marshal() is suboptimal. Generate it into separate files. This lets monitor/misc.c, qga/main.c, and the generated qapi-commands-FOO.h include less. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20191120182551.23795-4-armbru@redhat.com> [Typos in docs/devel/qapi-code-gen.txt fixed] Reviewed-by: Eric Blake <eblake@redhat.com>
11 lines
501 B
Makefile
11 lines
501 B
Makefile
commands-posix.o-libs := $(LIBUDEV_LIBS)
|
|
qga-obj-y = commands.o guest-agent-command-state.o main.o
|
|
qga-obj-$(CONFIG_POSIX) += commands-posix.o channel-posix.o
|
|
qga-obj-$(CONFIG_WIN32) += commands-win32.o channel-win32.o service-win32.o
|
|
qga-obj-$(CONFIG_WIN32) += vss-win32.o
|
|
qga-obj-y += qapi-generated/qga-qapi-types.o qapi-generated/qga-qapi-visit.o
|
|
qga-obj-y += qapi-generated/qga-qapi-commands.o
|
|
qga-obj-y += qapi-generated/qga-qapi-init-commands.o
|
|
|
|
qga-vss-dll-obj-$(CONFIG_QGA_VSS) += vss-win32/
|