forked from ShawnHoose/planet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
GNUmakefile
46 lines (27 loc) · 837 Bytes
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
COMP = gnu
DIM = 2
PRECISION = DOUBLE
USE_MPI = TRUE
USE_OMP = FALSE
DEBUG = FALSE
PROFILE = FALSE
USE_RAD = TRUE
USE_NEUTRINO = FALSE
USE_GRAV = TRUE
USE_REACT = FALSE
USE_MODELPARSER = TRUE
CASTRO_HOME = ../../..
ifdef MICROPHYSICS_HOME
#This sets the EOS directory in $(MICROPHYSICS_HOME)/eos
EOS_dir := gamma_law_general
# This sets the network directory in $(MICROPHYSICS_HOME)/networks
Network_dir := general_null
NETWORK_INPUTS := ./planet.net
else
$(error Error: This problem requires the Microphysics repository. Please ensure that you have downloaded it and set $$MICROPHYSICS_HOME appropriately)
endif
# power-law opacity
Opacity_dir := null
Bpack := ./Make.package
Blocs := .
include $(CASTRO_HOME)/Exec/Make.Castro