1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
# Makefile for CDFTOOLS
# $Rev: 173 $
# $Date: 2008-03-17 11:42:21 +0100 (Mon, 17 Mar 2008) $
# --------------------------------------------------------------
#
#NCDF = -I/usr/local/include -L/usr/local/lib -lnetcdf
NCDF = -I/usr/local/netcdf-3.6.1/ifort/include -L /usr/local/netcdf-3.6.1/ifort/lib/ \
-I/opt/netcdf/include -L /opt/netcdf/lib/ \
-I/usr/local/include -L/usr/local/lib -lnetcdf
F90=ifort
MPF90=mpif90
OMP=
#OPM=-openmp
#NC4 = -D key_netcdf4
NC4 =
#CMIP6 = -D key_CMIP6
CMIP6 =
FFLAGS= -O $(NCDF) $(NC4) $(CMIP6) -assume byterecl -convert big_endian $(OMP)
LMPI=-lmpich
#INSTALL=$(HOME)/bin
INSTALL=/usr/local/bin
INSTALL_MAN=/usr/local/man
|