#!/bin/sh

#echo "Cleaning src..."
rm -f *.o
rm -f *~
for i in `ls` ; do
    if [ -d $i ]; then
	cd $i
	rm -f *.o
	rm -f *~
	cd ..
    fi
done
