mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-protocol
synced 2025-12-26 22:55:30 +00:00
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.
34 lines
750 B
Makefile
34 lines
750 B
Makefile
NULL =
|
|
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
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/INSTALL \
|
|
$(srcdir)/aclocal.m4 \
|
|
$(srcdir)/autoscan.log \
|
|
$(srcdir)/compile \
|
|
$(srcdir)/config.guess \
|
|
$(srcdir)/config.h.in \
|
|
$(srcdir)/config.sub \
|
|
$(srcdir)/configure.scan \
|
|
$(srcdir)/depcomp \
|
|
$(srcdir)/install-sh \
|
|
$(srcdir)/ltmain.sh \
|
|
$(srcdir)/missing \
|
|
$(srcdir)/mkinstalldirs \
|
|
`find "$(srcdir)" -type f -name Makefile.in -print` \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|