From 9fdb749bd9bf6b2131c0cf49bbfc1549251f2386 Mon Sep 17 00:00:00 2001 From: Justin Date: Sat, 12 Sep 2020 15:49:44 -0700 Subject: [PATCH] comments to makefile --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f8004dc..aacad87 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ #========================================================================== -## Compiles fortran code and links to FFTW +## Usage: compiles fortran code and links to FFTW +## +## Configured for two compiler options (variable FC): ifort and gfortran #========================================================================== TOP= ./ SRC= $(TOP)src/ @@ -16,7 +18,7 @@ vpath %.f90 $(SRC) INCFFTW= /usr/include LIBFFTW= /lib/x86_64-linux-gnu #========================================================================== -FC = gfortran#ifort# +FC = ifort#gfortran# FFLAGS= -g -fmax-errors=5 -O2