summaryrefslogtreecommitdiff
path: root/src/cython/Makefile
blob: a4fa1104ee390f2212bcd354e7bcc95e4fda0b82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
ext:
	python setup.py build_ext --inplace

test:
	python test/Simplex_tree_UT.py

example:
	python example/Simplex_tree_example.py

clean:
	rm -rf build/ *.o *.so *.cpp

.PHONY: example test