2046b1de07
* remove unused functions * cythonize common * add bds05 * separate cleanly cython and python, bds05, bds06, modulo issues * bds08 * bds09 * optimisations in bds09 * "make" things easier * clean up useless stuff * add make options * fix hidden altitude() call * minor updates to C code * update tests * update benchmark * consolidation * update clean script * reduce complexity and change default type to str Co-authored-by: Xavier Olive <1360812+xoolive@users.noreply.github.com>
20 lines
369 B
Makefile
20 lines
369 B
Makefile
install:
|
|
pip install . --upgrade
|
|
|
|
uninstall:
|
|
pip uninstall pyModeS -y
|
|
|
|
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
|
|
find . | grep -E "(__pycache__|\.pyc|\.pyo$$)" | xargs rm -rf
|
|
rm -rf *.egg-info
|
|
rm -rf .pytest_cache
|
|
rm -rf build/*
|