aboutsummaryrefslogtreecommitdiffstats
path: root/makeconf.sh
diff options
context:
space:
mode:
Diffstat (limited to 'makeconf.sh')
-rwxr-xr-xmakeconf.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/makeconf.sh b/makeconf.sh
index 2c97050..8cd29ad 100755
--- a/makeconf.sh
+++ b/makeconf.sh
@@ -1,6 +1,12 @@
#! /bin/sh
+echo Running aclocal...
aclocal
+echo Running autoheader...
autoheader
+echo Running autoconf...
autoconf
+echo Running automake...
automake -a -c
+rm -f config.cache config.status
+echo "To compile run './configure', and then 'make'."