summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorUlrich Bauer <mail@ulrich-bauer.org>2016-11-22 17:18:54 -0500
committerUlrich Bauer <mail@ulrich-bauer.org>2016-11-22 17:18:54 -0500
commit5cfc80f27c19e2db52373a155b8dbf1ff627ac26 (patch)
treea4bda99543d846ab55dfea2e0a709b563b78f0b4 /Makefile
parentac9f41f3caee223c61c15d8bb41a3a23fd3b9799 (diff)
coeff reduction in makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 73e09fb..893d776 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
build: ripser
-all: ripser ripser-coeff ripser-reduction ripser-debug
+all: ripser ripser-coeff ripser-reduction ripser-coeff-reduction ripser-debug
ripser: ripser.cpp
@@ -13,9 +13,12 @@ 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-coeff-reduction: ripser.cpp
+ c++ -std=c++11 ripser.cpp -o ripser-coeff-reduction -Ofast -D NDEBUG -D USE_COEFFICIENTS -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 ripser-debug
+ rm -f ripser ripser-coeff ripser-reduction ripser-coeff-reduction ripser-debug