summaryrefslogtreecommitdiffstats
path: root/crawl-ref/domake.sh
blob: 8306bc2c7e1e4330b68a45ce3373ec096dcff178 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#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

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

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