summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-23 09:19:53 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-03-23 09:19:53 -0300
commitba1acc33bca14cc23234bdfea0d25b4247c7d6cb (patch)
treeb16ed847bbf0a226737fdadc8019b74a2fec954e
parentf3d34a2572426a4f149cc8b926d3b1102bb5a897 (diff)
downloadcode-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.tar.gz
code-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.tar.bz2
code-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.zip
Added correlations 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
+