#!/bin/csh -f
set nonomatch
set echo
rm -f a.out
rm -f *~
rm -f *.o
rm -fr *.dSYM
foreach m (*/Makefile)
    make -C $m:h clean
end
