#!/bin/sh
#
# This file is handy to update all the files generated by autoconf, automake 
# and friends, quickly.
#

aclocal -I .
autoheader
autoconf
libtoolize --copy --force --automake
automake --add-missing --gnu --include-deps
