summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-09 16:52:26 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-09 16:52:26 -0300
commitfc7d01ebfb5682df2fbbd6c668cce1569e0d9df5 (patch)
tree75465d582fcbb971e5798558d8145f91e95a3cb0 /Makefile
parenta87589bae5cd5f8b530a857f51b141b7b781d54d (diff)
downloadcode-fc7d01ebfb5682df2fbbd6c668cce1569e0d9df5.tar.gz
code-fc7d01ebfb5682df2fbbd6c668cce1569e0d9df5.tar.bz2
code-fc7d01ebfb5682df2fbbd6c668cce1569e0d9df5.zip
Rewrote the original integrator to use a new approach.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 547e336..688a99c 100644
--- a/Makefile
+++ b/Makefile
@@ -8,8 +8,8 @@ walk: walk.cpp
correlations: correlations.cpp
$(CC) correlations.cpp -o correlations
-integrator: integrator.cpp
- $(CC) integrator.cpp -o integrator
+integrator: integrator.cpp fourier.o fourier.hpp
+ $(CC) integrator.cpp fourier.o -lfftw3 -lfftw3_omp -o integrator
fourier.o: fourier.cpp fourier.hpp
$(CC) fourier.cpp -c -o fourier.o