#!/bin/sh
for th_dir in utp-* ; do
  if [ -d $th_dir ] && [ -e $th_dir/makefile ] ; then
    make -C $th_dir $*
  fi
done
