#!/bin/sh
if test -f configure.ac; then
    autoconf
fi

for a in sources spm; do
   cd $a
   if test -f configure.ac; then
       aclocal
       #autoheader
       autoconf
   fi
   if test -f build; then
       /bin/sh ./build
   fi
   cd ..
done

