summaryrefslogtreecommitdiffstats
path: root/trunk/domake.sh
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/domake.sh')
-rw-r--r--trunk/domake.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/trunk/domake.sh b/trunk/domake.sh
new file mode 100644
index 0000000000..a523e0b3b6
--- /dev/null
+++ b/trunk/domake.sh
@@ -0,0 +1,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