Austin Schuh | a273376 | 2015-09-06 17:46:50 -0700 | [diff] [blame^] | 1 | #!/bin/sh |
2 | if [ -x "`which autoreconf 2>/dev/null`" ] ; then | ||||
3 | exec autoreconf -ivf | ||||
4 | fi | ||||
5 | |||||
6 | LIBTOOLIZE=libtoolize | ||||
7 | SYSNAME=`uname` | ||||
8 | if [ "x$SYSNAME" = "xDarwin" ] ; then | ||||
9 | LIBTOOLIZE=glibtoolize | ||||
10 | fi | ||||
11 | aclocal -I m4 && \ | ||||
12 | autoheader && \ | ||||
13 | $LIBTOOLIZE && \ | ||||
14 | autoconf && \ | ||||
15 | automake --add-missing --force-missing --copy |