summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-11-11 21:44:33 -0800
committerMatthew Cline <zelgadis@sourceforge.net>2009-11-11 21:44:33 -0800
commit4ff972df490429850e141bdaf08f2622ffd70280 (patch)
treea79ab39d3bd2e078e0c1c8e73a7beb9ff1e8e10f /crawl-ref/source/makefile
parent0333e02340fe245ac17305d9d721328544234ac1 (diff)
downloadcrawl-ref-4ff972df490429850e141bdaf08f2622ffd70280.tar.gz
crawl-ref-4ff972df490429850e141bdaf08f2622ffd70280.zip
makefile: make fastdep work with tiles
fastdep wasn't picking up all tiles dependencies.
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 2adc7a79ae..338ff04405 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -707,7 +707,7 @@ DEPS := $(OBJECTS:.o=.d)
ifeq ($(shell which fastdep 2> /dev/null),)
DEPEND := $(CXX) -MM $(ALL_CFLAGS)
else
-DEPEND := fastdep $(DEFINES) $(INCLUDES)
+DEPEND := fastdep $(DEFINES) $(DEFINES_L) $(INCLUDES) $(INCLUDES_L)
endif
%.d: %.cc .cflags