stem_examples/Makefile

27 lines
377 B
Makefile
Raw Normal View History

2024-01-14 14:28:53 +00:00
LOCAL_DOCTEST=/usr/local/bin/toxcore_run_doctest3.bash
DOCTEST=${LOCAL_DOCTEST}
2024-01-15 12:37:32 +00:00
MOD=stem_examples
check::
sh python3.sh -c "import ${MOD}"
2024-01-14 14:28:53 +00:00
lint::
sh .pylint.sh
rsync::
bash .rsync.sh
2024-01-15 12:37:32 +00:00
pyi::
echo FixMe
2024-01-14 14:28:53 +00:00
doctest:
export PYTHONPATH=${PWD}
2024-01-15 12:37:32 +00:00
${DOCTEST} ${MOD].txt
veryclean:: clean
rm -rf build dist __pycache__ .pylint.err .pylint.out
clean::
find . -name \*~ -delete