blob: 33795bf9954cfdda2f009f8bf6f7712768c8361b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# on Mac libtoolize is called glibtoolize
LIBTOOLIZE=libtoolize
if [ `uname -s` = Darwin ]; then
LIBTOOLIZE=glibtoolize
fi
$LIBTOOLIZE -c --automake
aclocal
autoheader
autoconf
automake -a --foreign -c
|