summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-02 13:55:59 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-02 13:55:59 -0300
commit7b94eef14b891cf450b471765dc0a6666fe72eae (patch)
tree087034061be7236f34a2a7216522bb35c8517377 /Makefile
parent8b80dc216a258df592c21962c2a9622557b2877a (diff)
downloadcode-7b94eef14b891cf450b471765dc0a6666fe72eae.tar.gz
code-7b94eef14b891cf450b471765dc0a6666fe72eae.tar.bz2
code-7b94eef14b891cf450b471765dc0a6666fe72eae.zip
Started on new iteration scheme
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3519e50..f245260 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-all: walk correlations integrator
+all: walk correlations integrator fourier_integrator
-CC := clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp -g
+CC := clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp -lfftw3
walk: walk.cpp
$(CC) walk.cpp -o walk
@@ -10,3 +10,6 @@ correlations: correlations.cpp
integrator: integrator.cpp
$(CC) integrator.cpp -o integrator
+
+fourier_integrator: fourier_integrator.cpp
+ $(CC) fourier_integrator.cpp -o fourier_integrator