summaryrefslogtreecommitdiff
path: root/Makefile
blob: d4c15bfe0805bcd0ea83d9de7695158e4e05c4ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: walk correlations integrator fourier_integrator get_energy

CC := clang++ -std=c++17 -flto -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp

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.o: fourier.cpp fourier.hpp
	$(CC) fourier.cpp -c -o fourier.o

fourier_integrator: fourier_integrator.cpp fourier.hpp fourier.o
	$(CC) fourier_integrator.cpp fourier.o -lfftw3 -o fourier_integrator

get_energy: get_energy.cpp fourier.hpp fourier.o
	$(CC) get_energy.cpp fourier.o -lfftw3 -o get_energy