blob: fb1c95094eb9a3051277a034b93f2d42688639d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
build:
python setup.py build_ext --inplace
clean:
find \( -name \*.c -o -name \*.h -o -name \*.so \) -exec rm {} \;
rm -rf build
install:
pip install .
docs:
make -C docs html
|