Add basic Makefile

This commit is contained in:
INADA Naoki
2016-09-29 17:20:58 +09:00
parent 4202f611df
commit fe94467312

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
.PHONY: build
build:
python3 setup.py build_ext -if
.PHONY: clean
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -delete
rm *.so
python3 setup.py clean