Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Flex Extract
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Flexpart
Flex Extract
Commits
5868d748
Commit
5868d748
authored
5 years ago
by
anphi
Browse files
Options
Downloads
Patches
Plain Diff
remove ifort makefile since untested; renamed GRIB_API_LIB to ECCODES_LIB
parent
da1b7883
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Source/Fortran/makefile_debug
+2
-2
2 additions, 2 deletions
Source/Fortran/makefile_debug
Source/Fortran/makefile_local_ifort
+0
-61
0 additions, 61 deletions
Source/Fortran/makefile_local_ifort
with
2 additions
and
63 deletions
Source/Fortran/makefile_debug
+
2
−
2
View file @
5868d748
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
Source/Fortran/makefile_local_ifort
deleted
100644 → 0
+
0
−
61
View file @
da1b7883
###############################################################################
#
# 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
#
###############################################################################
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment