From e2f9b0dd0bb032498989027ddc8c0e39a4a44961 Mon Sep 17 00:00:00 2001 From: Neil Lewis Date: Fri, 31 May 2024 13:42:32 +0100 Subject: [PATCH] Delete mkmf.template.ubuntu_conda2 --- .../templates/mkmf.template.ubuntu_conda2 | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/extra/python/isca/templates/mkmf.template.ubuntu_conda2 diff --git a/src/extra/python/isca/templates/mkmf.template.ubuntu_conda2 b/src/extra/python/isca/templates/mkmf.template.ubuntu_conda2 deleted file mode 100644 index 65d8eeb68..000000000 --- a/src/extra/python/isca/templates/mkmf.template.ubuntu_conda2 +++ /dev/null @@ -1,28 +0,0 @@ -# template for the gfortran compiler -# typical use with mkmf -# mkmf -t template.ifc -c"-Duse_libMPI -Duse_netCDF" path_names /usr/local/include -CPPFLAGS = `nc-config --cflags` -NC_INC=`nc-config --fflags` -NC_LIB=`nc-config --flibs` - -# FFLAGS: -# -cpp: Use the fortran preprocessor -# -ffree-line-length-none -fno-range-check: Allow arbitrarily long lines -# -fcray-pointer: Cray pointers don't alias other variables. -# -ftz: Denormal numbers are flushed to zero. -# -assume byterecl: Specifies the units for the OPEN statement as bytes. -# -shared-intel: Load intel libraries dynamically -# -i4: 4 byte integers -# -fdefault-real-8: 8 byte reals (compatability for some parts of GFDL code) -# -fdefault-double-8: 8 byte doubles (compat. with RRTM) -# -O2: Level 2 speed optimisations - -FFLAGS = $(CPPFLAGS) $(NC_LIB) -cpp -fcray-pointer \ - -O2 -ffree-line-length-none -fno-range-check \ - -fallow-invalid-boz -fallow-argument-mismatch - -FC = $(F90) -LD = $(F90) - -LDFLAGS = -lnetcdff -lnetcdf -lmpi -CFLAGS = -D__IFC