Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rwxr-xr-xbuild10
1 files changed, 10 insertions, 0 deletions
diff --git a/build b/build
new file mode 100755
index 0000000..2bc2823
--- /dev/null
+++ b/build
@@ -0,0 +1,10 @@
+#!/bin/bash
+pushd images
+date >> buildlog
+prevbuild=$(/bin/ls *.done | tail -1)
+nextbuild=$(python -c "print '%0.2d' % (int('$prevbuild'.split('.')[0][-2:]) + 1);")
+buildname=soasxo$nextbuild
+echo building $buildname
+time make -f ../Makefile $buildname >> buildlog 2>&1
+date >> buildlog
+popd