diff options
author | Markus Armbruster | 2019-02-14 16:22:38 +0100 |
---|---|---|
committer | Markus Armbruster | 2019-02-18 14:44:04 +0100 |
commit | 5d75648b56e6e400eafaa1c2c8616ffc5ae6148e (patch) | |
tree | 726cd271079330d6fd489ba0f31d773e31f04cd2 /Makefile | |
parent | qapi: Prepare for system modules other than 'builtin' (diff) | |
download | qemu-5d75648b56e6e400eafaa1c2c8616ffc5ae6148e.tar.gz qemu-5d75648b56e6e400eafaa1c2c8616ffc5ae6148e.tar.xz qemu-5d75648b56e6e400eafaa1c2c8616ffc5ae6148e.zip |
qapi: Generate QAPIEvent stuff into separate files
Having to include qapi-events.h just for QAPIEvent is suboptimal, but
quite tolerable now. It'll become problematic when we have events
conditional on the target, because then qapi-events.h won't be usable
from target-independent code anymore. Avoid that by generating it
into separate files.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20190214152251.2073-6-armbru@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -101,6 +101,7 @@ GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-visit-%.c) GENERATED_QAPI_FILES += qapi/qapi-commands.h qapi/qapi-commands.c GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-commands-%.h) GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-commands-%.c) +GENERATED_QAPI_FILES += qapi/qapi-emit-events.h qapi/qapi-emit-events.c GENERATED_QAPI_FILES += qapi/qapi-events.h qapi/qapi-events.c GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-events-%.h) GENERATED_QAPI_FILES += $(QAPI_MODULES:%=qapi/qapi-events-%.c) |