# Rules file for sherlock (alpha linux with Fujitsu fort compiler)
#
# To make a custom file for your machine, start with this example.
# Look up how your other makefiles set the various flags.
# There are some dummy flags here ("") that you may need.
# 
# When you do figure out the correct settings, 
# I will appreciate if you email me the new file so that
# I can include it in nut distribution.
#
# Note that this code will NOT compile with f77
# you MUST use an f90 compiler
# Some machines automatically assume *.f files to be f77
# My compiler (Fujitsu) associates *.f with fixed format files,
# but not with f77 compiler, so I have no trouble.
# You may need to specify that the file format is fixed, but the
# compiler to use is the f90 version.
# All this inherited baggage will vanish in NUT-1
#####################################################
# Name of fortran compiler, generally f90
FC="fort"
#
# FFLAGS are fortran compiler flags (for
# THese settings are for my alpha ev56 machine with a Fujitsu compiler
FFLAGS="-O5 -arch ev56"
#
# ARFLAGS are archive flags
ARFLAGS="-ruv"
#
# Following are dummy flags. Though I do not need them, you may.
LDFLAGS=
LFLAGS=
#####################################################
