summaryrefslogtreecommitdiffstats
path: root/crawl-ref/domake.sh
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-15 19:00:57 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-15 19:00:57 +0000
commitd1fe64be4d7b10fe8deea4cb9ee6dbf3e99f259f (patch)
treeedc4f09177d5ae52cb294de2f4fc47f7cd381490 /crawl-ref/domake.sh
parentc607f86c3013a65b0888227c8f6385ce72ce0177 (diff)
downloadcrawl-ref-d1fe64be4d7b10fe8deea4cb9ee6dbf3e99f259f.tar.gz
crawl-ref-d1fe64be4d7b10fe8deea4cb9ee6dbf3e99f259f.zip
Vastly simplify dolinks.sh and domake.sh.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6565 c06c8d41-db1a-0410-9941-cceddc491573
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