summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 362b72d3e9e0977de6b9f95baf10b059af7799db (plain)
1
2
3
4
5
6
7
8
9
build:
	python setup.py build_ext --inplace

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

docs:
	make -C docs html