Add sys/jam.sh build script

This commit is contained in:
pancake 2014-02-13 03:00:15 +01:00
parent 693653068e
commit 68364121f8
1 changed files with 29 additions and 0 deletions

29
sys/jam.sh Executable file
View File

@ -0,0 +1,29 @@
#!/bin/sh
rm -rf `find *| grep bin/darwin `
cd shlr
for a in * ; do
if [ -e $a/Jamroot ]; then
cd $a
bjam -j4
cd ..
fi
done
cd ../libr
for a in * ; do
if [ -e $a/Jamroot ]; then
cd $a
bjam -j4
cd ..
fi
done
cd ..
cd binr
for a in * ; do
if [ -e $a/Jamroot ]; then
cd $a
bjam -j4
cd ..
fi
done