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

UNAME=`uname`

if [ "$UNAME" = "Darwin" ]; then
libtoolize --copy --force --automake
aclocal-1.9
autoheader-2.60
automake-1.9 --add-missing --copy --foreign
autoconf-2.60

else
libtoolize --copy --force --automake
aclocal
autoheader
automake --add-missing --copy --foreign
autoconf
fi