#!/bin/sh
# bootstrap.sh -- sometimes called autogen.sh
# do the auto stuff for sources from CVS

autoheader    # creates config.in, not necessarily needed every time
aclocal -I m4 # for a new version of automake
automake
autoconf

