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