#!/bin/sh
#
# make helper
#
DIR="\
util\
fofrun\
horbstat\
"

for i in $DIR
do
	(cd $i; make $*)
done
