1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00
MUSIC/plugins/boxlib_stuff/GNUmakefile

30 lines
651 B
Makefile
Raw Normal View History

# BOXLIB_HOME defines the directory in which we will find all the BoxLib code
# it is set via environment Variable otherwise it's set to this:
2013-02-07 16:34:34 +01:00
#BOXLIB_HOME = ${HOME}/nyx_tot_sterben/BoxLib
#TOP defines the directory in which we will find Source, Exec, etc
2013-02-07 16:34:34 +01:00
TOP = ${PWD}
# PRECISION HAS TO BE DOUBLE!!! SINGLE won't work out of the box because of fftw3 issues
PRECISION = DOUBLE
DEBUG = FALSE
DIM = 3
COMP = Intel
FCOMP = Intel
USE_MPI = FALSE
USE_OMP = FALSE
IN_MUSIC = NO
2013-02-07 16:34:34 +01:00
#hmm....awful (needed for general.hh)
ifeq ($(FFTW3), yes)
DEFINES += -DFFTW3
endif
2013-02-07 16:34:34 +01:00
ifeq ($(SINGLE), yes)
PRECISION = SINGLE
endif
include ./Make.ic