2005-02-12 14:11:11 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2006-09-09 20:11:26 +04:00
|
|
|
case `uname -s` in
|
|
|
|
Darwin)
|
|
|
|
LIBTOOLIZE=glibtoolize
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
LIBTOOLIZE=libtoolize
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2005-02-12 14:11:11 +03:00
|
|
|
# Remove autoconf 2.5x's cache directory
|
|
|
|
rm -rf autom4te*.cache
|
|
|
|
|
|
|
|
aclocal -I . || exit 1
|
|
|
|
autoheader || exit 1
|
2006-09-09 20:11:26 +04:00
|
|
|
${LIBTOOLIZE} --force --copy || exit 1
|
2005-02-12 14:11:11 +03:00
|
|
|
automake --foreign --add-missing --copy || exit 1
|
|
|
|
autoconf || exit 1
|