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

test:
	python test/Simplex_tree_UT.py
	python test/Mini_simplex_tree_UT.py
	python test/Rips_complex_UT.py
	python test/Alpha_complex_UT.py

example:
	python example/Simplex_tree_example.py
	python example/Mini_simplex_tree_example.py
	python example/Rips_complex_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