summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7e1ed7d..2b5214f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
-all: walk
+all: walk correlations
CC := clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native
walk: walk.cpp
$(CC) walk.cpp -o walk
+correlations: correlations.cpp
+ $(CC) correlations.cpp -o correlations
+