#!/bin/sh
#
# $Id: reconf,v 1.1.1.1 1999/03/11 22:23:34 dast Exp $
#
# re autoconf/automake shell script
#


aclocal    || { echo "ahhhhh"; exit }
autoheader || { echo "ahhhhh"; exit }
automake   || { echo "ahhhhh"; exit }
autoconf   || { echo "ahhhhh"; exit }

