diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-23 09:19:53 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-03-23 09:19:53 -0300 |
commit | ba1acc33bca14cc23234bdfea0d25b4247c7d6cb (patch) | |
tree | b16ed847bbf0a226737fdadc8019b74a2fec954e | |
parent | f3d34a2572426a4f149cc8b926d3b1102bb5a897 (diff) | |
download | code-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.tar.gz code-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.tar.bz2 code-ba1acc33bca14cc23234bdfea0d25b4247c7d6cb.zip |
Added correlations to Makefile
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 + |