#! /bin/sh

# Generate/Update autotools related files to distribute
set -e
autoreconf -v -i -f
set +e

# Clean up
rm "config.h.in~"
rm "configure~"
rm "hp/config.h.in~"
rm "hp/configure~"
rm -rf "autom4te.cache"
rm -rf "hp/autom4te.cache"


# EOF
