#!/bin/sh
autoscan
mv configure.scan configure.ac
echo "Add this line below the AC_INIT line:"
echo "AM_INIT_AUTOMAKE"
echo "--- Copy it and press ENTER ---"
read _
nano configure.ac
autoheader
aclocal
touch NEWS README AUTHORS ChangeLog
automake --add-missing --copy
autoconf
echo "Compile with:"
echo "./configure"
echo "make"
