Rev 3 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
| Rev |
Author |
Line No. |
Line |
| 3 |
michaesp |
1 |
# -*- Makefile -*-
|
|
|
2 |
# contact: Andrea Pozzer MPIC (andrea.pozzer@mpic.de)
|
|
|
3 |
# ----------------------------------------------
|
|
|
4 |
export
|
|
|
5 |
SHELL = sh
|
|
|
6 |
|
|
|
7 |
# hydra intel fortran
|
|
|
8 |
F90 = ifort
|
|
|
9 |
|
|
|
10 |
#debugging
|
|
|
11 |
#F90FLAGS = -autodouble -cpp -g -debug full -traceback -O3
|
|
|
12 |
#production
|
|
|
13 |
F90FLAGS = -autodouble -cpp -O3
|
|
|
14 |
|
|
|
15 |
FC = $(F90)
|
|
|
16 |
FFLAGS = $(F90FLAGS)
|
|
|
17 |
|
|
|
18 |
NETCDF_ROOT = /ptmp/mpcdata/software/x86_64-suse-linux/netcdf/v3.6.3_i
|
|
|
19 |
|
|
|
20 |
LIBS = -L$(NETCDF_ROOT)/lib -lnetcdf
|
|
|
21 |
INCLUDES = -I$(NETCDF_ROOT)/include
|
|
|
22 |
|
|
|
23 |
INSTALLDIR = .
|
|
|
24 |
# ----------------------------------------------
|
|
|
25 |
include main.mk
|
|
|
26 |
# ----------------------------------------------
|