summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillaume Horel <guillaume.horel@serenitascapital.com>2016-08-08 11:45:16 -0400
committerGuillaume Horel <guillaume.horel@serenitascapital.com>2016-08-08 11:45:16 -0400
commit1ce5ac59f97510857114d015aeadc66604a7e240 (patch)
tree5ea76754273d402f3f55a962bfa895c2c5245528
parent7fefaab49e5985e5c3c851f5266653cc1b560629 (diff)
downloadpyisda-1ce5ac59f97510857114d015aeadc66604a7e240.tar.gz
better Makefile
-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