Below is the file 'src/build' from this revision. You can also download the file.

#!/bin/sh

SUBDIRS="common lsc lsi"

for dir in ${SUBDIRS}
do
	cd ${dir}
	make $*
	cd .. 
done