summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-02 16:34:31 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-02 16:34:31 -0300
commita159721d440d70ef04bb259303a6a0e022e435a2 (patch)
tree4189b4bc91f7010e32d0733711b32fb882c5e994 /Makefile
parent7b94eef14b891cf450b471765dc0a6666fe72eae (diff)
downloadcode-a159721d440d70ef04bb259303a6a0e022e435a2.tar.gz
code-a159721d440d70ef04bb259303a6a0e022e435a2.tar.bz2
code-a159721d440d70ef04bb259303a6a0e022e435a2.zip
Got fourier integrator working
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f245260..21f3def 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
all: walk correlations integrator fourier_integrator
-CC := clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp -lfftw3
+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