Home | History | Annotate | Download | only in mclinker
      1 #!/bin/sh
      2 #                     The MCLinker project
      3 #
      4 # This file is distributed under the University of Illinois Open Source
      5 # License. See LICENSE.TXT for details.
      6 
      7 LIBTOOLIZE=libtoolize
      8 my_uname=`uname`
      9 
     10 if [ ${my_uname} = "Darwin" ]; then
     11   LIBTOOLIZE=glibtoolize
     12 fi
     13 root=`dirname $0`
     14 cd $root
     15 
     16 aclocal -I ./m4
     17 ${LIBTOOLIZE} --force
     18 automake --add-missing
     19 autoconf
     20