diff --git a/Source/Fortran/makefile_debug b/Source/Fortran/makefile_debug index 47df1a3268dff0e6841d7a4ba2364903a7335450..538a3b3e00edba49892c0e1b8047444b06a5e195 100644 --- a/Source/Fortran/makefile_debug +++ b/Source/Fortran/makefile_debug @@ -14,9 +14,9 @@ EXE = calc_etadot_debug.out -GRIB_API_LIB= -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm -ljasper +ECCODES_LIB= -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm -ljasper EMOSLIB=-lemosR64 -LIB = $(GRIB_API_LIB) $(EMOSLIB) +LIB = $(ECCODES_LIB) $(EMOSLIB) ECCODES_INCLUDE_DIR=/usr/lib/x86_64-linux-gnu/fortran/gfortran-mod-15 INC = -I. -I$(ECCODES_INCLUDE_DIR) diff --git a/Source/Fortran/makefile_local_ifort b/Source/Fortran/makefile_local_ifort deleted file mode 100644 index 310dc9b728d9621b44ca99a5f687f7c59741e3a2..0000000000000000000000000000000000000000 --- a/Source/Fortran/makefile_local_ifort +++ /dev/null @@ -1,61 +0,0 @@ -############################################################################### -# -# Top level Makefile for ECMWFDATA7.0 software -# -# Last modified: December 1, 2015 -# -############################################################################### - - -.SUFFIXES: .o .c .c~ .f .f~ .F90 .f90 .f90~ .f95 .f95~ .F .F~ .y .y~ .l .l~ \ - .s .s~ .sh .sh~ .h .h~ .C .C~ .a - -GRIB_API_INCLUDE_DIR=/usr/local/include -GRIB_API_LIB= -L/usr/local/lib -leccodes_f90 -leccodes -lm -ljasper - - -OPT = -g -O3 -mcmodel=medium -unroll -inline -heap-arrays 32 -DEBUG = '' -LIB = $(GRIB_API_LIB) -lemosR64 -lgfortran - -FC=/opt/intel/composerxe/bin/ifort -132 -traceback -r8 -F90C=/opt/intel/composerxe/bin/ifort -132 -traceback -r8 - -FFLAGS = $(OPT) -I. -I$(GRIB_API_INCLUDE_DIR) -F90FLAGS = $(OPT) -I. -I$(GRIB_API_INCLUDE_DIR) - -LDFLAGS = $(OPT) - -BINDIR = . - -EXE = calc_etadot.s8.ifort - - -.f.o: - $(F90C) -c $(F90FLAGS) -132 $(DEBUG) $*.f -.f90.o: - $(F90C) -c $(F90FLAGS) -132 $(DEBUG) $*.f90 - -all: ${EXE} - -clean: - rm *.o *.mod ${EXE} - -phgrreal.o: phgrreal.f - $(F90C) -c -g -O3 phgrreal.f - -grphreal.o: grphreal.f - $(F90C) -c -g -O3 grphreal.f - -ftrafo.o: ftrafo.f - $(F90C) -c -g -O3 ftrafo.f - -$(BINDIR)/${EXE}: phgrreal.o grphreal.o ftrafo.o rwgrib2.o posnam.o calc_etadot.o - $(F90C) $(DEBUG) $(OPT) -o $(BINDIR)/${EXE} ftrafo.o phgrreal.o grphreal.o rwgrib2.o posnam.o calc_etadot.o ${LIB} - - -############################################################################### -# -# End of the Makefile -# -###############################################################################