blob: 8cd29ad9419020860ffee86fad92d8b7d9d4eed6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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'."
|