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>
29 lines
603 B
Makefile
29 lines
603 B
Makefile
NULL =
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
SUBDIRS = python_modules common tests
|
|
|
|
EXTRA_DIST = \
|
|
spice_codegen.py \
|
|
spice.proto \
|
|
spice1.proto \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = *.pyc
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/INSTALL \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/build-aux \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/m4/libtool.m4 \
|
|
$(srcdir)/m4/ltoptions.m4 \
|
|
$(srcdir)/m4/ltsugar.m4 \
|
|
$(srcdir)/m4/ltversion.m4 \
|
|
$(srcdir)/m4/lt~obsolete.m4 \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print` \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|