aboutsummaryrefslogtreecommitdiff
path: root/makeconf.sh
blob: 67357e3b96a33000272bcc60cba4f2bf73a7e1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

echo Running libtoolize...
libtoolize --automake -c

if test ! -z "`which autoreconf`"; then
    echo Running autoreconf...
    autoreconf -i
else
    echo Running aclocal...
    aclocal
    echo Running autoheader...
    autoheader
    echo Running autoconf...
    autoconf
    echo Running automake...
    automake -a -c
fi

rm -f config.cache config.status
echo "To compile run './configure', and then 'make'."