summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8dbd1762ffa585e40f049eb9896083e602218fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build:
	python setup.py build_ext --inplace -j4

clean:
	find pyisda \( -name *.c -o -name *.h -o -name *.so -o -name *.cpp -o -name *.html \) -exec rm {} \;
	rm -rf build

install:
	pip install .

docs: build
	make -C docs html

test:
	python -m unittest discover tests -v

.PHONY: build docs clean test