#! /bin/sh

for a in `find . -type d -print`; do
	echo $a;
	if [ $a != "." ]; then
		(cd $a; make clean)
	fi
done
