ember/autogen.sh
2011-08-28 12:54:45 +02:00

20 lines
355 B
Bash
Executable file

#! /bin/sh
rm -f config.cache
if test -d /usr/local/share/aclocal ; then
ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I /usr/local/share/aclocal"
fi
aclocal $ACLOCAL_FLAGS
if [ "`echo $OSTYPE | grep darwin`" != "" ] ; then
LIBTOOLIZE="glibtoolize"
else
LIBTOOLIZE="libtoolize"
fi
$LIBTOOLIZE --force --copy
autoheader
automake --gnu --add-missing --copy
autoconf