From 3466cbc7cace7e2958873441cfe5d9abe14f04cb Mon Sep 17 00:00:00 2001 From: Dr Jeff Polton <jpolton@gmail.com> Date: Fri, 17 May 2019 12:11:34 +0100 Subject: [PATCH] switch make.macro for executable, which doesnt port --- NAMELISTS_AND_FORTRAN_FILES/make.macro | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 NAMELISTS_AND_FORTRAN_FILES/make.macro diff --git a/NAMELISTS_AND_FORTRAN_FILES/make.macro b/NAMELISTS_AND_FORTRAN_FILES/make.macro new file mode 100644 index 0000000..5a54f03 --- /dev/null +++ b/NAMELISTS_AND_FORTRAN_FILES/make.macro @@ -0,0 +1,20 @@ +# Makefile for SOSIE with Intel Ifort on Linux +# ============================================ + +# Fortran compiler: +FC = ftn + +# Root directory for Netcdf: +#NETCDF_DIR = /opt/netcdf_intel11 + +# Linking argument: usually -lnetcdf or -lnetcdff (or both): +L_NCDF = -lnetcdf -lnetcdff + +# Fortran compilation flags: +# -- Production +FF = -O3 -i4 -xHost -module mod/ +# -- Debugging +#FF = -O0 -i4 -traceback -CB -module mod/ + +# Directory to install binaries: +INSTALL_DIR = /home/n01/n01/jelt/local -- GitLab