summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-03 15:45:29 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-03 15:45:29 -0300
commit8364b9a96b8f60a3effbe8843c89717a89a8fc5e (patch)
treedaf2c354746cf85499ceca67f324325574e59f6a /Makefile
parent60e0f9b63c9825a265a93a278bf018d301063ea2 (diff)
downloadcode-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.tar.gz
code-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.tar.bz2
code-8364b9a96b8f60a3effbe8843c89717a89a8fc5e.zip
Split functions into library to deduplicate code
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index c013825..d4c15bf 100644
--- a/Makefile
+++ b/Makefile
@@ -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