radare2/sys/jam.sh

31 lines
406 B
Bash
Raw Normal View History

2014-02-13 03:00:15 +01:00
#!/bin/sh
2015-06-16 23:47:36 -04:00
# shellcheck disable=SC2046
rm -rf $(find ./*| grep bin/darwin)
2014-02-13 03:00:15 +01:00
cd shlr
2015-06-16 23:47:36 -04:00
for a in ./* ; do
if [ -e "$a/Jamroot" ]; then
cd "$a" || exit 1
2014-02-13 03:00:15 +01:00
bjam -j4
cd ..
fi
done
cd ../libr
2015-06-16 23:47:36 -04:00
for a in ./* ; do
if [ -e "$a/Jamroot" ]; then
cd "$a" || exit 1
2014-02-13 03:00:15 +01:00
bjam -j4
cd ..
fi
done
cd ..
cd binr
2015-06-16 23:47:36 -04:00
for a in ./* ; do
if [ -e "$a/Jamroot" ]; then
cd "$a" || exit 1
2014-02-13 03:00:15 +01:00
bjam -j4
cd ..
fi
done