Skip to content
Snippets Groups Projects
autogen.sh 298 B
Newer Older
  • Learn to ignore specific revisions
  • ale's avatar
    ale committed
    #! /bin/sh
    
    if [ -x "`which autoreconf 2>/dev/null`" ] ; then
      exec autoreconf -ivf
    fi
    
    if glibtoolize --version > /dev/null 2>&1; then
      LIBTOOLIZE='glibtoolize'
    else
      LIBTOOLIZE='libtoolize'
    fi
    
    $LIBTOOLIZE && \
    aclocal -I m4 && \
    autoheader && \
    automake --add-missing --foreign && \
    autoconf