summaryrefslogtreecommitdiff
path: root/lib/make/make.thornlib
diff options
context:
space:
mode:
Diffstat (limited to 'lib/make/make.thornlib')
-rw-r--r--lib/make/make.thornlib6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/make/make.thornlib b/lib/make/make.thornlib
index 389bb0f8..0fd815b3 100644
--- a/lib/make/make.thornlib
+++ b/lib/make/make.thornlib
@@ -33,7 +33,7 @@ CCTK_SRCS += $(SRCS)
# These have to be wrapped to allow us to concatanate all the
# SRCS definitions, complete with subdirectory names.
ifneq ($(strip $(SUBDIRS)),)
-include $(foreach DIR,$(SUBDIRS), $(DIR)/make.identity $(MAKE_DIR)/$(PRE_WRAPPER) $(SRCDIR)/$(DIR)/make.code.defn $(MAKE_DIR)/$(POST_WRAPPER))
+sinclude $(foreach DIR,$(SUBDIRS), $(DIR)/make.identity $(MAKE_DIR)/$(PRE_WRAPPER) $(SRCDIR)/$(DIR)/make.code.defn $(MAKE_DIR)/$(POST_WRAPPER))
endif
SRCS = $(CCTK_SRCS)
@@ -50,7 +50,9 @@ $(NAME): $(addsuffix .check, $(SUBDIRS)) $(OBJS) $(SRCDIR)/make.code.defn $(fore
include $(CONFIG)/make.config.rules
# Extra thorn-specific dependencies
-include $(SRCDIR)/make.code.deps
+# This file isn't strictly necessary, so use sinclude to prevent
+# warnings if it is missing.
+sinclude $(SRCDIR)/make.code.deps
# Extra stuff for allowing make to recurse into directories