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

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

install:
	pip install .

docs: build
	make -C docs html

.PHONY: build docs clean