summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorUlrich Bauer <mail@ulrich-bauer.org>2016-09-15 21:10:13 +0200
committerUlrich Bauer <mail@ulrich-bauer.org>2016-09-15 21:10:13 +0200
commit130f035031c2cb4e37e30b9fc5a0666e726dd0b6 (patch)
tree614b8ea0b5bad7b48d27713cc6b4811704cd9cb8 /Makefile
parent5b79f97e7ded30a267722811a08414b19cbdd20f (diff)
parent7d5c7bb72b11f145190fa329949f478f987ceb4f (diff)
Merge branch 'dev'
* dev: updated version number in readme explicit word sizes for index_t and coefficient_t pretty-print removed unneccesary check in file reader cleanup changed to more general default format added debug version to makefile cleaned up detection of apparent persistence pairs packed entry_t cleanup cleanup union find implementation union find for H^0 fixed compressed_distance_matrix access cleanup cleanup to remove compiler warning added reduction matrix option to Makefile updated readme fixed csv reader fixed format selection for distance matrix
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9359d43..73e09fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
build: ripser
-all: ripser ripser-coeff
+all: ripser ripser-coeff ripser-reduction ripser-debug
ripser: ripser.cpp
@@ -10,6 +10,12 @@ ripser: ripser.cpp
ripser-coeff: ripser.cpp
c++ -std=c++11 ripser.cpp -o ripser-coeff -Ofast -D NDEBUG -D USE_COEFFICIENTS
+ripser-reduction: ripser.cpp
+ c++ -std=c++11 ripser.cpp -o ripser-reduction -Ofast -D NDEBUG -D ASSEMBLE_REDUCTION_MATRIX
+
+ripser-debug: ripser.cpp
+ c++ -std=c++11 ripser.cpp -o ripser-debug -g
+
clean:
- rm ripser ripser-coeff \ No newline at end of file
+ rm -f ripser ripser-coeff ripser-reduction ripser-debug