27 lines
377 B
Makefile
27 lines
377 B
Makefile
LOCAL_DOCTEST=/usr/local/bin/toxcore_run_doctest3.bash
|
|
DOCTEST=${LOCAL_DOCTEST}
|
|
MOD=stem_examples
|
|
|
|
|
|
check::
|
|
sh python3.sh -c "import ${MOD}"
|
|
|
|
lint::
|
|
sh .pylint.sh
|
|
|
|
rsync::
|
|
bash .rsync.sh
|
|
|
|
pyi::
|
|
echo FixMe
|
|
|
|
doctest:
|
|
export PYTHONPATH=${PWD}
|
|
${DOCTEST} ${MOD].txt
|
|
|
|
veryclean:: clean
|
|
rm -rf build dist __pycache__ .pylint.err .pylint.out
|
|
|
|
clean::
|
|
find . -name \*~ -delete
|