1#!/bin/sh
2#jmf: automate making normal & wizard binaries, until they merge
3#jmf: N.B.: requires symlink directories; run ./dolinks.sh to make
4
5pushd NORMAL && make && popd && pushd WIZARD && make wizard ; popd
6
7if [ -f NORMAL/crawl ]; then
8	ln -sf NORMAL/crawl ncrawl
9fi
10if [ -f WIZARD/crawl ]; then
11	ln -sf WIZARD/crawl wcrawl
12fi
13