build-sys: Make sure new files are dist'ed

The just added .proto files and python code generation code need to be
added to EXTRA_DIST in order to be distributed in tarballs, and
we need to recurse in the new python_modules directory.
This commit is contained in:
Christophe Fergeau 2015-07-06 18:17:11 +02:00
parent 26eb4e0f2e
commit eb2e8ba0e8
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,14 @@
NULL =
SUBDIRS = spice
SUBDIRS = python_modules spice
codegendir = $(libdir)/spice-protocol
dist_codegen_DATA = \
spice_codegen.py \
spice.proto \
spice1.proto \
$(NULL)
DISTCLEANFILES = *.pyc
pkgconfigdir = $(datadir)/pkgconfig
pkgconfig_DATA = spice-protocol.pc

View File

@ -18,4 +18,5 @@ AC_OUTPUT([
Makefile
spice-protocol.pc
spice/Makefile
python_modules/Makefile
])