blob: d9d6fe130d113351639a4242cbbc03f39523abaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#! /bin/sh
echo Running autoheader...
autoheader
echo Running autoconf...
autoconf
rm -f config.cache config.status
echo "To compile run './configure', and then 'make'."
|