pyModeS/Makefile

20 lines
369 B
Makefile
Raw Normal View History

2019-10-30 05:24:27 +08:00
install:
pip install . --upgrade
uninstall:
pip uninstall pyModeS -y
2019-10-30 00:53:39 +08:00
ext:
python setup.py build_ext --inplace
test:
python -m pytest
clean:
find pyModeS/decoder -type f -name '*.c' -delete
find pyModeS/decoder -type f -name '*.so' -delete
2019-10-30 06:59:15 +08:00
find . | grep -E "(__pycache__|\.pyc|\.pyo$$)" | xargs rm -rf
2019-10-30 05:24:27 +08:00
rm -rf *.egg-info
2019-10-30 06:59:15 +08:00
rm -rf .pytest_cache
2019-10-30 05:24:27 +08:00
rm -rf build/*