Skip to content

Commit fe94467

Browse files
committed
Add basic Makefile
1 parent 4202f61 commit fe94467

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: build
2+
build:
3+
python3 setup.py build_ext -if
4+
5+
6+
.PHONY: clean
7+
clean:
8+
find . -name '*.pyc' -delete
9+
find . -name '__pycache__' -delete
10+
rm *.so
11+
python3 setup.py clean

0 commit comments

Comments
 (0)