summaryrefslogtreecommitdiff
path: root/src/cython/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/Makefile')
-rw-r--r--src/cython/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cython/Makefile b/src/cython/Makefile
index c17e9e09..a4fa1104 100644
--- a/src/cython/Makefile
+++ b/src/cython/Makefile
@@ -2,8 +2,12 @@ ext:
python setup.py build_ext --inplace
test:
- python Simplex_tree_UT.py
- python Simplex_tree_example.py
+ python test/Simplex_tree_UT.py
+
+example:
+ python example/Simplex_tree_example.py
clean:
rm -rf build/ *.o *.so *.cpp
+
+.PHONY: example test