summaryrefslogtreecommitdiffstats
path: root/bootstrap
blob: b953ba7156fdd181d3b0c6ab92905abd4a0f5e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh 

UNAME=`uname`

if [ "$UNAME" = "Darwin" ]; then
    LIBTOOLIZE=glibtoolize
else
    LIBTOOLIZE=libtoolize
fi

$LIBTOOLIZE --copy --force --automake
aclocal
autoheader
automake --add-missing --copy --foreign
autoconf