summaryrefslogtreecommitdiffstats
path: root/crawl-ref/domake.sh
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/domake.sh')
-rw-r--r--crawl-ref/domake.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/domake.sh b/crawl-ref/domake.sh
index 8306bc2c7e..4ae1a8d6fe 100644
--- a/crawl-ref/domake.sh
+++ b/crawl-ref/domake.sh
@@ -2,12 +2,13 @@
#jmf: automate making normal & wizard binaries, until they merge
#jmf: N.B.: requires symlink directories; run ./dolinks.sh to make
-pushd NORMAL && make && popd && pushd WIZARD && make wizard ; popd
+pushd NORMAL/source ; make ; popd
+pushd WIZARD/source ; make wizard ; popd
-if [ -f NORMAL/crawl ]; then
- ln -sf NORMAL/crawl ncrawl
+if [ -f NORMAL/source/crawl ]; then
+ ln -sf NORMAL/source/crawl ncrawl
fi
-if [ -f WIZARD/crawl ]; then
- ln -sf WIZARD/crawl wcrawl
+if [ -f WIZARD/source/crawl ]; then
+ ln -sf WIZARD/source/crawl wcrawl
fi