blob: 21f3defd7f655489e53eca0527dfa10b7a578584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all: walk correlations integrator fourier_integrator
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
|