source: flex_extract.git/Source/Fortran/makefile_cray @ 7cd1586

ctbtodev
Last change on this file since 7cd1586 was 7cd1586, checked in by pesei <petra seibert -@…>, 4 years ago

Update makefiles to use eccodes instead of grib_api
Adapt makefile_ecgate so that the lib and inc paths are taken from env variables
Make linke from exe file to standard exe calc_etadot
Adapt makefile_cray, but this needs still to be tested

  • Property mode set to 100644
File size: 1.4 KB
Line 
1###############################################################################
2#
3# Makefile for flex_extract, Fortran code to calculate etadot
4# Makefile created using by mkmf 19.3.0
5#
6# Copyright: Leopold Haimberger, Petra Seibert
7# SPDX-License-Identifier: GPL-2.0
8#
9# Version for a machine with eccodes and emoslib installed on standard paths
10# full debugging
11#
12###############################################################################
13
14
15EXE      =  calc_etadot
16
17LIB     =  $(ECCODES_LIB) $(EMOSLIB)   
18INC = -I. -I$(ECCODES_INCLUDE_DIR)
19
20FC = ftn
21
22OPT = -O3
23FFLAGS =  -r8 $(OPT) $(LIB) $(INC)
24LDFLAGS =  $(OPT) -fopenmp
25EXE     =      calc_etadot
26
27.f.o:
28SRC = ./rwgrib2.f90 ./calc_etadot.f90 ./ftrafo.f90 ./grphreal.f90 ./posnam.f90 ./phgrreal.f90
29OBJ = rwgrib2.o calc_etadot.o ftrafo.o grphreal.o posnam.o phgrreal.o
30MOD = ftrafo.mod  grtoph.mod    phtogr.mod  rwgrib2.mod
31
32ftrafo.o: ./ftrafo.f90 phgrreal.o
33        $(FC)  $(FFLAGS)  -c    ./ftrafo.f90
34grphreal.o: ./grphreal.f90 phgrreal.o
35        $(FC)  $(FFLAGS)  -c    ./grphreal.f90
36phgrreal.o: ./phgrreal.f90
37        $(FC)  $(FFLAGS)  -c    ./phgrreal.f90
38posnam.o: ./posnam.f90
39        $(FC)  $(FFLAGS)  -c    ./posnam.f90
40calc_etadot.o: ./calc_etadot.f90 phgrreal.o grphreal.o ftrafo.o rwgrib2.o
41        $(FC)  $(FFLAGS)  -c    ./calc_etadot.f90
42rwgrib2.o: ./rwgrib2.f90
43        $(FC)  $(FFLAGS)  -c    ./rwgrib2.f90
44
45clean:
46        -rm -f $(OBJ) ${EXE} $(MOD) calc_etadot
47
48${EXE}: $(OBJ)
49        $(FC) $(OBJ) -o ${EXE}  $(LDFLAGS)
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG