#!/bin/sh

if type -t autoreconf >/dev/null
then
    autoreconf -v
else
    set -e
    set -x

    aclocal -I config
    autoheader
    automake --gnu --add-missing 
    autoconf
fi


syntax highlighted by Code2HTML, v. 0.9.1