#!/bin/sh

echo "autoconf in `pwd`"
autoconf

for i in include lib shell system ispp gpm bps npe ncs rc bm util xcut dcm
do
  echo "autoheader and autoconf in $i"
  (cd $i; test -f config.h.in -o -f SL_config.h.in && autoheader; autoconf)
done
