diff options
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 |