mirror of
https://github.com/worldforge/ember
synced 2026-08-13 16:23:06 -04:00
12 lines
243 B
Bash
Executable file
12 lines
243 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
|
|
libtoolize --force --copy
|
|
autoheader
|
|
automake --gnu --add-missing --copy
|
|
autoconf
|