amun-code/build/make.default
Grzegorz Kowal 4f9c5015d4 Make.default: Turn off HDF5 by default.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
2020-04-28 14:10:30 -03:00

42 lines
1.1 KiB
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 = N
PROFILE = N
STATIC = N
SIGNALS = N
# parallelization flags:
#
# MPI - enable or disable MPI parallelization
#
MPI = N
# OUTPUT - the format of the alternative data output;
# supported alternative formats: HDF5
#
OUTPUT =
#-------------------------------------------------------------------------------
#
# geometry:
#
# NDIMS - number of dimensions, currently 2 or 3 are supported
#
NDIMS = 2
#
#-------------------------------------------------------------------------------
#
# path for temporary files during compilation (uncomment if you wish to use it)
#
#OBJSDIR := /tmp/${USER}/amun-code/objects