mirror of
https://github.com/worldforge/ember
synced 2026-08-13 16:23:06 -04:00
20 lines
355 B
Bash
Executable file
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
|