2002-05-16 15:45:34 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
sh() {
|
|
|
|
/bin/sh -c "set -x; $*"
|
|
|
|
}
|
|
|
|
|
2007-04-23 19:11:12 +00:00
|
|
|
export WANT_AUTOMAKE=1.9
|
2003-06-17 16:31:48 +00:00
|
|
|
|
2007-04-23 18:43:43 +00:00
|
|
|
sh autopoint --force || exit 1 # for GNU gettext
|
|
|
|
sh libtoolize --copy --force --automake || exit 1
|
|
|
|
sh aclocal -I m4 $ACLOCAL_FLAGS || exit 1
|
|
|
|
#sh autoheader || exit 1
|
|
|
|
sh autoconf || exit 1
|
|
|
|
sh automake --include-deps --add-missing --copy || exit 1
|
2002-05-16 15:45:34 +00:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo You are now ready to run ./configure
|
|
|
|
echo enjoy!
|