mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2025-12-26 22:48:03 +00:00
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>
17 lines
265 B
Makefile
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
|