mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-26 14:18:36 +00:00
This reverts commit 7665dcf1bb.
Also revert the related build-sys changes to fix the build.
codegen generated code depends on spice-common code (marshaller,
messages etc), it makes more sense to keep the generator along
this. Otherwise a newer protocol release will fail to build older
projects.
*.proto files are required as well, since it generates code that parent
modules depend on unconditionnaly.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
17 lines
235 B
Makefile
17 lines
235 B
Makefile
NULL =
|
|
|
|
PYTHON_MODULES = \
|
|
__init__.py \
|
|
codegen.py \
|
|
demarshal.py \
|
|
marshal.py \
|
|
ptypes.py \
|
|
spice_parser.py \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = $(PYTHON_MODULES)
|
|
|
|
DISTCLEANFILES = *.pyc
|
|
|
|
-include $(top_srcdir)/git.mk
|