summaryrefslogtreecommitdiffstats
path: root/crawl-ref/domake.sh
blob: 4ae1a8d6fe88126fa06f1a939dd6add2290ab6cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#jmf: automate making normal & wizard binaries, until they merge
#jmf: N.B.: requires symlink directories; run ./dolinks.sh to make

pushd NORMAL/source ; make ; popd
pushd WIZARD/source ; make wizard ; popd

if [ -f NORMAL/source/crawl ]; then
	ln -sf NORMAL/source/crawl ncrawl
fi

if [ -f WIZARD/source/crawl ]; then
	ln -sf WIZARD/source/crawl wcrawl
fi