summaryrefslogtreecommitdiff
path: root/Makefile
blob: 331fdd68e05a5b7dfd95de968bc6ba1de35481ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
build: ripser


all: ripser ripser-coeff ripser-reduction


ripser: ripser.cpp
	c++ -std=c++11 ripser.cpp -o ripser -Ofast -D NDEBUG

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


clean:
	rm -f ripser ripser-coeff ripser-reduction