diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-09 16:52:26 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-09 16:52:26 -0300 |
commit | fc7d01ebfb5682df2fbbd6c668cce1569e0d9df5 (patch) | |
tree | 75465d582fcbb971e5798558d8145f91e95a3cb0 /Makefile | |
parent | a87589bae5cd5f8b530a857f51b141b7b781d54d (diff) | |
download | code-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |