blob: c013825e5e7eb2eb70f7ce0dccacd307df028fb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
walk: walk.cpp
$(CC) walk.cpp -o walk
correlations: correlations.cpp
$(CC) correlations.cpp -o correlations
integrator: integrator.cpp
$(CC) integrator.cpp -o integrator
fourier_integrator: fourier_integrator.cpp
$(CC) fourier_integrator.cpp -o fourier_integrator
get_energy: get_energy.cpp
$(CC) get_energy.cpp -o get_energy
|