#!/usr/bin/tcsh -e

cd build-trees

foreach i (`ls -d *`)
	cd "$i"
	make
	cd ..
end
