summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/makefile.dos3
-rw-r--r--crawl-ref/source/makefile.mgw3
-rw-r--r--crawl-ref/source/makefile.unix2
3 files changed, 7 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile.dos b/crawl-ref/source/makefile.dos
index f8e43f631f..f56ea91ed8 100644
--- a/crawl-ref/source/makefile.dos
+++ b/crawl-ref/source/makefile.dos
@@ -55,6 +55,9 @@ GAME_DEPENDS := $(OBJECTS)
all: $(APPNAME)
+DEPENDENCY_MKF := makefile.dep
+-include $(DEPENDENCY_MKF)
+
##########################################################################
# The level compiler
#
diff --git a/crawl-ref/source/makefile.mgw b/crawl-ref/source/makefile.mgw
index e098964b41..5affb0dc16 100644
--- a/crawl-ref/source/makefile.mgw
+++ b/crawl-ref/source/makefile.mgw
@@ -77,6 +77,9 @@ all: $(APPNAME)
prepare:
if not exist $(OPATH) mkdir $(OPATH)
+DEPENDENCY_MKF := makefile.dep
+-include $(DEPENDENCY_MKF)
+
##########################################################################
# The level compiler
#
diff --git a/crawl-ref/source/makefile.unix b/crawl-ref/source/makefile.unix
index 1b3f63d8eb..bb983325aa 100644
--- a/crawl-ref/source/makefile.unix
+++ b/crawl-ref/source/makefile.unix
@@ -99,7 +99,7 @@ all: $(GAME)
##########################################################################
# Dependencies
-DEPENDENCY_MKF := makefile.dependencies
+DEPENDENCY_MKF := makefile.dep
depend: $(OBJECTS:.o=.cc)
rm -f $(DEPENDENCY_MKF)