summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 59a046b78b3d298066b2da26ecf2b08f6119ac50 (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 libtoolize
run aclocal
#run autoheader
run automake -a
run autoconf