added top level makefile for simpler dev
This commit is contained in:
parent
9cf3ce24d1
commit
66195c0313
10
Makefile
Normal file
10
Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
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}'
|
Reference in New Issue
Block a user