summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 362b72d..fb1c950 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,11 @@ build:
python setup.py build_ext --inplace
clean:
- find \( -name \*.c -o -name \*.h \) -exec rm {} \;
+ find \( -name \*.c -o -name \*.h -o -name \*.so \) -exec rm {} \;
rm -rf build
+install:
+ pip install .
+
docs:
make -C docs html