summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-03 10:47:33 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-03 10:47:33 -0300
commit0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58 (patch)
tree8fbc4ddb8061f301fa0ece195fea03c0ef24f2c8 /Makefile
parenta74456dccdbe2a04157edbcad4e71525a33d43d0 (diff)
downloadcode-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.tar.gz
code-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.tar.bz2
code-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.zip
Added file for calculating energy later.
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