summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac1
-rw-r--r--python_modules/Makefile.am6
-rwxr-xr-xspice_codegen.py (renamed from spice_gen.py)0
4 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 6640259e..5701e254 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,9 @@
-SUBDIRS = common server client
+SUBDIRS = common server client python_modules
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = spice-server.pc
DISTCLEANFILES = \
spice-server.pc
+
+EXTRA_DIST = spice.proto spice_codegen.py
diff --git a/configure.ac b/configure.ac
index 0958b6d4..08804bf6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -337,6 +337,7 @@ AC_OUTPUT([
Makefile
spice-server.pc
common/Makefile
+python_modules/Makefile
server/Makefile
client/Makefile
client/x11/Makefile
diff --git a/python_modules/Makefile.am b/python_modules/Makefile.am
new file mode 100644
index 00000000..4b3c960f
--- /dev/null
+++ b/python_modules/Makefile.am
@@ -0,0 +1,6 @@
+NULL =
+
+PYTHON_MODULES = __init__.py codegen.py demarshal.py ptypes.py spice_parser.py
+
+EXTRA_DIST = $(PYTHON_MODULES)
+
diff --git a/spice_gen.py b/spice_codegen.py
index f897ce81..f897ce81 100755
--- a/spice_gen.py
+++ b/spice_codegen.py