spice-common/python_modules/Makefile.am
Christophe Fergeau 32e2ed57b5 build: Add __pycache__/*.pyc to DISTCLEANFILES
Python 3 puts its .pyc files in a __pycache__ subdirectory, This commit
adds these to DISTCLEANFILES. My main motivation for doing this is so
that git.mk can then properly add them to .gitignore.

Acked-by: Victor Toso <victortoso@redhat.com>
2018-06-18 14:08:10 +01:00

17 lines
265 B
Makefile

NULL =
PYTHON_MODULES = \
__init__.py \
codegen.py \
demarshal.py \
marshal.py \
ptypes.py \
spice_parser.py \
$(NULL)
EXTRA_DIST = meson.build $(PYTHON_MODULES)
DISTCLEANFILES = *.pyc __pycache__/*.pyc
-include $(top_srcdir)/git.mk