summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: d72f896542e98fcc19ac1630042115f9353e8ae1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash -e
CFLAGS="${CFLAGS:--g3 -O -Wall}" ; export CFLAGS
set -x
libtoolize -f
autoheader
aclocal
automake -a
autoconf
if test -f config.cache ; then
	rm -f config.cache
fi
./configure $@