diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-02-10 17:41:35 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-02-10 17:41:35 -0300 |
commit | 26fff09ab2cfd42aafcebd3b39d3c13265cc4faf (patch) | |
tree | 2e4e49ce5b8e39ac7546c22a316aff3ddee02f71 | |
parent | 1fa7e842c55202a825e35de6f27e0fcc5861b649 (diff) | |
download | ictp-saifr_colloquium-26fff09ab2cfd42aafcebd3b39d3c13265cc4faf.tar.gz ictp-saifr_colloquium-26fff09ab2cfd42aafcebd3b39d3c13265cc4faf.tar.bz2 ictp-saifr_colloquium-26fff09ab2cfd42aafcebd3b39d3c13265cc4faf.zip |
Added Makefile
-rw-r--r-- | Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..45c7329 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +all: poly abs + +poly: + clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp fits.cpp -o fits + +abs: + clang++ -std=c++17 -Wno-mathematical-notation-identifier-extension -O3 -march=native -mtune=native -fopenmp -DFITS_ABS_BASIS fits.cpp -o fits_abs |