This repository has been archived on 2025-04-15. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-30 14:20:12 +02:00

10 lines
359 B
Makefile

default: ext
ext: ## [DEFAULT] build c extension in place
python setup.py build_ext --inplace
clean: ## Remove the build folder and the shared library
rm -rf build/ creader.cpython*
help: # from compiler explorer
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'