diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 15:45:29 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 15:45:29 -0300 |
commit | 8364b9a96b8f60a3effbe8843c89717a89a8fc5e (patch) | |
tree | daf2c354746cf85499ceca67f324325574e59f6a /Makefile | |
parent | 60e0f9b63c9825a265a93a278bf018d301063ea2 (diff) | |
download | code-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.tar.gz code-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.tar.bz2 code-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.zip |
Split functions into library to deduplicate code
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,6 +1,6 @@ all: walk correlations integrator fourier_integrator get_energy -CC := clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp -lfftw3 -g +CC := clang++ -std=c++17 -flto -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp walk: walk.cpp $(CC) walk.cpp -o walk @@ -11,8 +11,11 @@ correlations: correlations.cpp integrator: integrator.cpp $(CC) integrator.cpp -o integrator -fourier_integrator: fourier_integrator.cpp - $(CC) fourier_integrator.cpp -o fourier_integrator +fourier.o: fourier.cpp fourier.hpp + $(CC) fourier.cpp -c -o fourier.o -get_energy: get_energy.cpp - $(CC) get_energy.cpp -o get_energy +fourier_integrator: fourier_integrator.cpp fourier.hpp fourier.o + $(CC) fourier_integrator.cpp fourier.o -lfftw3 -o fourier_integrator + +get_energy: get_energy.cpp fourier.hpp fourier.o + $(CC) get_energy.cpp fourier.o -lfftw3 -o get_energy |