summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makefile
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-17 15:03:13 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-17 15:03:13 +0000
commit503609ba38413e93650ad0d520b710421fec2884 (patch)
tree2e34d81587eeb73e007effbc90326f9ec6e74c84 /crawl-ref/source/makefile
parent0cb37ef9c9aa55e1a24816666080b54b554843cb (diff)
downloadcrawl-ref-503609ba38413e93650ad0d520b710421fec2884.tar.gz
crawl-ref-503609ba38413e93650ad0d520b710421fec2884.zip
Added a basic depend target. Maybe we should do full autodependency building?
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@860 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makefile')
-rw-r--r--crawl-ref/source/makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/makefile b/crawl-ref/source/makefile
index 74adf5d88c..495076e0c0 100644
--- a/crawl-ref/source/makefile
+++ b/crawl-ref/source/makefile
@@ -31,6 +31,9 @@ clean:
distclean:
$(MAKE) $(OTHER) -f $(MAKEFILE) distclean
+depend:
+ $(MAKE) $(OTHER) -f $(MAKEFILE) depend
+
# WIZARD mode currently includes asserts, bounds checking, and item checking
wizard:
$(MAKE) $(OTHER) -f $(MAKEFILE) debug EXTRA_FLAGS='-g -DWIZARD -DDEBUG -DDEBUG_ITEM_SCAN'