source: flex_extract.git/Source/Fortran/makefile_fast @ 4f24798

dev
Last change on this file since 4f24798 was 4f24798, checked in by Anne Tipka <anne.tipka@…>, 22 months ago

elimination of emoslib in fortran code. See ticket #312

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[f2fdf45]1###############################################################################
2#
3# Makefile for flex_extract, Fortran code to calculate etadot
[dfa7dbd]4# Makefile created using by mkmf 19.3.0
[f2fdf45]5#
6# Copyright: Leopold Haimberger, Petra Seibert
7# SPDX-License-Identifier: GPL-2.0
8#
[7cd1586]9# Version for a machine with eccodes and emoslib installed on standard paths
[1610f73]10# with optimisation
[f2fdf45]11#
12###############################################################################
13
14
15EXE      =  calc_etadot_fast.out
16
[d2d6cf9]17ECCODES_LIB =  -Bstatic -leccodes_f90 -leccodes -Bdynamic -lm
[4f24798]18LIB =  $(ECCODES_LIB)
[f2fdf45]19
[14d9618]20ECCODES_INCLUDE_DIR=/usr/lib/x86_64-linux-gnu/fortran/gfortran-mod-15
21#/usr/local/include/ #oldstable
22
[deb7d17]23INC = -I. -I$(ECCODES_INCLUDE_DIR)
[dfa7dbd]24
25FC = gfortran
[14d9618]26OPT = -O3 # -O3 -march=native
[dfa7dbd]27FFLAGS =   $(OPT) $(LIB) $(INC) -fdefault-real-8 -fopenmp -fconvert=big-endian
28LDFLAGS =  $(OPT) $(LIB) -fopenmp
29SRC = ./rwgrib2.f90 ./calc_etadot.f90 ./ftrafo.f90 ./grphreal.f90 ./posnam.f90 ./phgrreal.f90
30OBJ = rwgrib2.o calc_etadot.o ftrafo.o grphreal.o posnam.o phgrreal.o
31MOD = ftrafo.mod  grtoph.mod    phtogr.mod  rwgrib2.mod
32
33.DEFAULT:
34        -echo $@ does not exist.
35
36all: ${EXE}
37ftrafo.o: ./ftrafo.f90 phgrreal.o
38        $(FC)  $(FFLAGS)  -c    ./ftrafo.f90
39grphreal.o: ./grphreal.f90 phgrreal.o
40        $(FC)  $(FFLAGS)  -c    ./grphreal.f90
41phgrreal.o: ./phgrreal.f90
42        $(FC)  $(FFLAGS)  -c    ./phgrreal.f90
43posnam.o: ./posnam.f90
44        $(FC)  $(FFLAGS)  -c    ./posnam.f90
45calc_etadot.o: ./calc_etadot.f90 phgrreal.o grphreal.o ftrafo.o rwgrib2.o
46        $(FC)  $(FFLAGS)  -c    ./calc_etadot.f90
47rwgrib2.o: ./rwgrib2.f90
48        $(FC)  $(FFLAGS)  -c    ./rwgrib2.f90
49
50clean:
[7cd1586]51        -rm -f $(OBJ) ${EXE} $(MOD) calc_etadot
[dfa7dbd]52
53${EXE}: $(OBJ)
54        $(FC) $(OBJ) -o ${EXE}  $(LDFLAGS)
[7cd1586]55        ln -sf ${EXE} calc_etadot
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG