summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 21f3def..c013825 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: walk correlations integrator fourier_integrator
+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
@@ -13,3 +13,6 @@ integrator: integrator.cpp
fourier_integrator: fourier_integrator.cpp
$(CC) fourier_integrator.cpp -o fourier_integrator
+
+get_energy: get_energy.cpp
+ $(CC) get_energy.cpp -o get_energy