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