#!/bin/sh
MAKE=make
for i in *;
do if [ -d $i ]; then
cd $i
$MAKE
cd ..
fi
done
