blob: f245260c2cea236bc2385f51eebe8d0e4a0fee3c (
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
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
|