#!/bin/sh
#
# first run aclocal
#
aclocal -I doc
#
# then run gettextize
#
gettextize -f
#
# next run autoheader
#
autoheader
#
# and autoconf
#
autoconf
#
# and libtoolize
#
libtoolize --force
#
# finally, run automake.
#
automake --add-missing
#
# then do the same in the doc directory
#
cd doc
aclocal
autoconf
automake --add-missing

