summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 19da8693c946f6d0ccebed8cdf4fd6c0ff74f48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

run ()
{
    echo "running: $*"
    eval $*

    if test $? != 0 ; then
	echo "error: while running '$*'"
	exit 1
    fi
}

run aclocal-1.6
#run autoheader
run libtoolize -f
run automake-1.6 -a
run autoconf