| #!/bin/sh | |
| # The MCLinker project | |
| # | |
| # This file is distributed under the University of Illinois Open Source | |
| # License. See LICENSE.TXT for details. | |
| LIBTOOLIZE=libtoolize | |
| my_uname=`uname` | |
| if [ ${my_uname} = "Darwin" ]; then | |
| LIBTOOLIZE=glibtoolize | |
| fi | |
| root=`dirname $0` | |
| cd $root | |
| aclocal -I ./m4 | |
| ${LIBTOOLIZE} --force | |
| automake --add-missing | |
| autoconf |