I realized that the python scripts that I used for testing
check_SCRIPTS = mypython.py
TESTS = mypython.py
are not included in the distribution. I found while running make distcheck
. Which means that make check
fails on the distribution.
What is the canonical way to add the check_SCRIPTS
to the distribution?
As explained in the Scripts section of the GNU Automake manual scripts are not distributed by default.
You can add them to the distribution using the generic
or by prefixing
check_SCRIPTS
withdist_
like so: