source: flexpart.git/flexpart_code/checkgrib/Makefile @ 9411952

FPv9.3.2
Last change on this file since 9411952 was 9411952, checked in by Don Morton <Don.Morton@…>, 3 years ago

Synchronised repo with the current CTBTO master.
The sole change is the addition of the flexpart_code/checkgrib/ dir

  • Property mode set to 100644
File size: 589 bytes
Line 
1BINARY = checkGRIB
2FC = gfortran
3FFLAGS = -Wall -g -O2 -mcmodel=medium -fconvert=little-endian -frecord-marker=4
4
5#GRIB_API = /opt/grib_api-1.14.0
6GRIB_API = /dvlscratch/ATM/morton/atm-software-20190112
7INCLUDES = -I${GRIB_API}/include
8LIBS = -L${GRIB_API}/lib -lgrib_api_f90 -lgrib_api -ljasper
9
10
11all : ${BINARY}
12
13${BINARY} : ${BINARY}.o cgutils.o
14        ${FC} -o ${BINARY} ${BINARY}.o cgutils.o ${LIBS}
15
16${BINARY}.o : ${BINARY}.F90 cgutils.o
17        ${FC} -c ${FFLAGS} ${INCLUDES} ${BINARY}.F90
18
19cgutils.o : cgutils.F90
20        ${FC} -c ${FFLAGS} ${INCLUDES} cgutils.F90
21
22clean :
23        $(RM) ${BINARY} *.o *.mod
Note: See TracBrowser for help on using the repository browser.
hosted by ZAMG