#!/bin/csh
(cd src; make all)
foreach dir (`find . -type d -name check -print`)
	if (-f $dir/Makefile) then
	   (cd $dir; make all)
	endif
end

