amun-code/build/make.default
Grzegorz Kowal 2d58e169be Move make and host files to a separate build directory.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
2018-03-30 14:09:23 -03:00

39 lines
994 B
Plaintext

#-------------------------------------------------------------------------------
#
# compilation, debugging and profiling flags:
#
# COMPILER - compiler brand; it is passed to the host file
# DEBUG - enable or disable debugging
# PROFILE - enable or disable profiling
# STATIC - enable or disable static linking
# SIGNALS - support for signals for proper shutdown with restart file
#
COMPILER = GNU
DEBUG = Y
PROFILE = N
STATIC = N
SIGNALS = N
# parallelization flags:
#
# MPI - enable or disable MPI parallelization
#
MPI = N
# output data format
#
# OUTPUT - the format of output data; so far only HDF5
#
OUTPUT = HDF5
#-------------------------------------------------------------------------------
#
# geometry:
#
# NDIMS - number of dimensions, currently 2 or 3 are supported
#
NDIMS = 2
#
#-------------------------------------------------------------------------------