# Copyright (c) 2002-10 Peter Guntert. All rights reserved.

# Configuration file, created by "make config".
# Peter Guntert, 21-01-2002
# Modified version, Peter Guntert, 20-10-2004
# Modified version, Peter Guntert, 28-01-2010


# General parameters ----------------------------------------------
#   VERSION: program version (taken from directory name, if empty)
#   SHELL:   shell used by `make'
#   KEY:     license key

VERSION     = 1.1
SHELL       = /bin/sh
KEY         = 0,0,0,0,0,0,0,0,0,0,0
MAKELICENSE = cyanalicense


# Machine-specific parameters -------------------------------------
#   SYSTEM:  System type
#   COMMENT: Description of system type
#   DEFS:    Additional definitions for the preprocessor
#   FC:      Fortran compiler
#   FC_NOMPI:Non-MPI Fortran compiler, if FC uses MPI
#   CC:      C compiler, if needed for fork() wrapper
#   FFLAGS:  Normal Fortran compiler options
#   FFLAGS2: Alternative Fortran compiler options (no optimization)
#   F90FLAGS:Fortran compiler options for .f90 source files
#   LDFLAGS: Linker flags for Fortran programs
#   LIBS:    Libraries for Fortran programs
#   FORK:    Object file for fork() wrapper
#   RANLIB:  ranlib command, if needed

# Intel (Linux) ...................................................

SYSTEM      = intel
COMMENT     = Intel Fortran compiler
FC          = ifort
FFLAGS      = -w -diag-disable remark
CC          = gcc
FORK        = g77fork.o
LDFLAGS     = -static
DEFS        = -Dintel
FFLAGS2     = -w -diag-disable remark
F90FLAGS    = -w -diag-disable remark
