diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-02 13:55:59 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-02 13:55:59 -0300 |
commit | 7b94eef14b891cf450b471765dc0a6666fe72eae (patch) | |
tree | 087034061be7236f34a2a7216522bb35c8517377 /Makefile | |
parent | 8b80dc216a258df592c21962c2a9622557b2877a (diff) | |
download | code-7b94eef14b891cf450b471765dc0a6666fe72eae.tar.gz code-7b94eef14b891cf450b471765dc0a6666fe72eae.tar.bz2 code-7b94eef14b891cf450b471765dc0a6666fe72eae.zip |
Started on new iteration scheme
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |