cp empty depend
for file in $*;
do
 	g++ -MM $file > temp
	cat depend temp > depend.2
	mv depend.2 depend
done
rm temp

