Subversion Repositories tropofold.echam

Rev

Blame | Last modification | View Log | Download | RSS feed

# -*- Makefile -*-
# contact: Andrea Pozzer MPIC (andrea.pozzer@mpic.de)
# ----------------------------------------------
export
SHELL    = sh

# hydra intel fortran
F90       = ifort

#debugging
#F90FLAGS  = -autodouble -cpp -g -debug full -traceback -O3 
#production
F90FLAGS  = -autodouble -cpp -O3 

FC        = $(F90)
FFLAGS    = $(F90FLAGS)

NETCDF_ROOT = /ptmp/mpcdata/software/x86_64-suse-linux/netcdf/v3.6.3_i

LIBS      = -L$(NETCDF_ROOT)/lib -lnetcdf
INCLUDES  = -I$(NETCDF_ROOT)/include

INSTALLDIR = .
# ----------------------------------------------
include main.mk
# ----------------------------------------------