toxygen_wrapper/Makefile

23 lines
373 B
Makefile
Raw Normal View History

2023-12-15 14:24:07 +00:00
PYTHON=python3
prepare::
bash .pylint.sh
check::
2023-12-16 23:23:00 +00:00
PYTHONPATH=$${PWD} pyanalyze \
2023-12-15 14:24:07 +00:00
tox_wrapper/tox.py tox_wrapper/tests/tests_wrapper.py \
> .pyanal.out 2>&1
install::
$(PYTHON) setup.py install
2023-12-16 23:23:00 +00:00
help::
$(PYTHON) tox_wrapper/tests/tests_wrapper.py --help
test::
2023-12-15 14:24:07 +00:00
$(PYTHON) tox_wrapper/tests/tests_wrapper.py
clean::
2023-12-16 23:23:00 +00:00
rm -f .[a-z]* *~ */*~ */*/*~
2023-12-15 14:24:07 +00:00
rm -rf *.egg-info