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

test:
	python test/Simplex_tree_UT.py

example:
	python example/Simplex_tree_example.py
	python example/Alpha_complex_example.py

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

# For not Makefile to take into account example and test directories
.PHONY: example test