summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2014-02-06 18:36:42 +0000
committereschnett <eschnett@17b73243-c579-4c4c-a9d2-2d5706c11dac>2014-02-06 18:36:42 +0000
commitdd5eb7c6f9ec5fcfff28202843f023f950500ba6 (patch)
tree1db79715005e770dfbe3af6d291ecd290b953659
parent48e64cc14dafe3678d5ea87aedd6dcb98e1c4fa8 (diff)
Export more variables
git-svn-id: http://svn.cactuscode.org/flesh/trunk@5075 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--lib/make/make.config.defn.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/make/make.config.defn.in b/lib/make/make.config.defn.in
index fc4ee72c..3a2a5c34 100644
--- a/lib/make/make.config.defn.in
+++ b/lib/make/make.config.defn.in
@@ -252,7 +252,7 @@ ifeq ($(strip $(CCTK_DEBUG_MODE)),yes)
endif
# Is this an optimising configuration ?
-CCTK_OPTIMISE_MODE = @OPTIMISE_MODE@
+export CCTK_OPTIMISE_MODE = @OPTIMISE_MODE@
ifeq ($(strip $(CCTK_OPTIMISE_MODE)),yes)
CPPFLAGS += $(CPP_OPTIMISE_FLAGS)
@@ -271,7 +271,7 @@ else
endif
# Is this a profiling configuration ?
-CCTK_PROFILE_MODE = @PROFILE_MODE@
+export CCTK_PROFILE_MODE = @PROFILE_MODE@
ifeq ($(strip $(CCTK_PROFILE_MODE)),yes)
CPPFLAGS += $(CPP_PROFILE_FLAGS)
@@ -284,7 +284,7 @@ ifeq ($(strip $(CCTK_PROFILE_MODE)),yes)
endif
# Are we building with OpenMP support ?
-CCTK_OPENMP_MODE = @OPENMP_MODE@
+export CCTK_OPENMP_MODE = @OPENMP_MODE@
ifeq ($(strip $(CCTK_OPENMP_MODE)),yes)
CPPFLAGS += $(CPP_OPENMP_FLAGS)