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 28 29 30 31 32
|
# Makefile for CDFTOOLS
# $Rev: 173 $
# $Date: 2008-03-17 11:42:21 +0100 (lun 17 mar 2008) $
# --------------------------------------------------------------
#
#NCDF = -I/opt/netcdf-4.1/include -L /opt/netcdf-4.1/lib/ -lnetcdf
HDF5 = -I/opt/hdf5-1.8.4/include -L/opt/hdf5-1.8.4/lib -lhdf5_hl -lhdf5
ZLIB = -I/opt/zlib-1.2.3/include -L/opt/zlib-1.2.3/lib -lz
NCDF = -I/opt/netcdf/4.2-intel/include -L /opt/netcdf/4.2-intel/lib/ -lnetcdf -lnetcdff
#NCDF = -I/opt/netcdf-4.1.1-ifort/include -L /opt/netcdf-4.1.1-ifort/lib/ \
# -lnetcdf
#HDF5 =
#ZLIB =
#NC4 =
NC4 = -Dkey_netcdf4
#CMIP6 = -D key_CMIP6
CMIP6 =
F90=ifort
MPF90=mpif90
OMP=
#OMP=-openmp
FFLAGS= -O -fp-model precise $(NCDF) $(NC4) $(CMIP6) $(HDF5) $(ZLIB) -fp-model precise $(OMP)
#FFLAGS= -O -fpe0 -CB -traceback -g -ftrapuv -fp-model precise $(NCDF) $(NC4) $(CMIP6) $(HDF5) $(ZLIB) -assume byterecl -convert big_endian
#FFLAGS= -O -fpe0 -CB -traceback -g -ftrapuv $(NCDF) $(NC4) $(CMIP6) $(HDF5) $(ZLIB)
#FFLAGS= -O -fpe0 -CB -traceback -g -ftrapuv $(NCDF) $(NC4) $(CMIP6) -assume byterecl -convert big_endian
LMPI=-lmpich
INSTALL=$(WORKDIR)/bin
INSTALL_MAN=$(WORKDIR)/man
|