#!/bin/bash
. ./BUILDDEFS

shopt -s nullglob
for i in ${BUILDDIR}/* ; do
	echo
	echo "[ Building $(basename $i) ]"
	echo $i
	cd $i
	make -j20
	echo "[ Leaving $(basename $i) ]"
	echo
done
