summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Bauer <mail@ulrich-bauer.org>2016-08-28 09:23:19 +0200
committerUlrich Bauer <mail@ulrich-bauer.org>2016-08-28 10:01:39 +0200
commit75f790a36a9dd6af3d1a6e39881f70474a55ece3 (patch)
tree7f3dac41e58cc54b277a300d905631bf300c83e1
parent76e9252dd33b97a438af8e05e6d4f0ffe0a625d0 (diff)
added debug version to makefile
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 331fdd6..73e09fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
build: ripser
-all: ripser ripser-coeff ripser-reduction
+all: ripser ripser-coeff ripser-reduction ripser-debug
ripser: ripser.cpp
@@ -13,6 +13,9 @@ ripser-coeff: ripser.cpp
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 -f ripser ripser-coeff ripser-reduction
+ rm -f ripser ripser-coeff ripser-reduction ripser-debug