From d1fe64be4d7b10fe8deea4cb9ee6dbf3e99f259f Mon Sep 17 00:00:00 2001 From: dolorous Date: Tue, 15 Jul 2008 19:00:57 +0000 Subject: 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 --- crawl-ref/domake.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'crawl-ref/domake.sh') 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 -- cgit v1.2.3-54-g00ecf