diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 10:47:33 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 10:47:33 -0300 |
commit | 0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58 (patch) | |
tree | 8fbc4ddb8061f301fa0ece195fea03c0ef24f2c8 /Makefile | |
parent | a74456dccdbe2a04157edbcad4e71525a33d43d0 (diff) | |
download | code-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.tar.gz code-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.tar.bz2 code-0c5dc2f8fc4d428130212b7b9ba8d3c86844cc58.zip |
Added file for calculating energy later.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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 |