summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
diff options
context:
space:
mode:
authoryye00 <yye00@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-08-16 17:26:48 +0000
committeryye00 <yye00@17b73243-c579-4c4c-a9d2-2d5706c11dac>2005-08-16 17:26:48 +0000
commit8c8a283caecd5acddb6466c79be1513aae2fb70c (patch)
tree642b03bc32935a83799268c00a00cd65d7d754c7 /lib/make/make.thornlib
parent8bbd884aa6aa78bb0b60eae385f4d9ba0de92982 (diff)
configuration.ccl fix. Please test and report if anything breaks
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4109 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/make.thornlib')
-rw-r--r--lib/make/make.thornlib6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index 84223bda..6f1a9fd9 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -20,17 +20,17 @@ include $(CONFIG)/make.config.defn
BINDINGS_DIR=$(TOP)/bindings
-# Include the configuration make.code.defn for the thorn
+# Include the configuration make.THORN_NAME.defn for the thorn
# if it is not Cactus or CactusBindings
INC_DIRS =
ifneq ($(THORN), CactusBindings)
ifneq ($(THORN), Cactus)
--include $(BINDINGS_DIR)/Configuration/$(THORN)/make.configuration.defn
+-include $(BINDINGS_DIR)/Configuration/Thorns/make.$(THORN).defn
endif
endif
# Add appropriate include lines
-INC_DIRS += $(SYS_INC_DIRS) $(SRCDIR) $(SRCDIR)/include $(CONFIG) $(BINDINGS_DIR)/include $(CCTK_HOME)/src/include $(CCTK_HOME)/arrangements
+INC_DIRS += $(SYS_INC_DIRS) $(SRCDIR) $(SRCDIR)/include $(CONFIG) $(BINDINGS_DIR)/include $(CCTK_HOME)/src/include $(CCTK_HOME)/arrangements $(BINDINGS_DIR)/Configuration/Thorns
# Allow subdirectories to inherit these include directories
export INC_DIRS