#!/bin/sh
# Run this if you change Makefile.am or configure.in
# and don't yet have a Makefile; this creates the initial Makefile
# and the initial 'configure' script.
# See 'info automake' or http://sourceware.cygnus.com/automake/
# and 'info autoconf'
aclocal
autoheader configure.in > config.h.in
autoconf
automake --add-missing
./configure

