2002-10-16 02:32:05 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
libtoolize --copy --force
|
|
|
|
aclocal
|
|
|
|
autoheader
|
2003-03-05 07:35:23 +08:00
|
|
|
automake -a -c
|
2002-10-16 02:32:05 +08:00
|
|
|
autoconf
|
|
|
|
|
|
|
|
if [ "$1" = "--noconfigure" ]; then
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ X"$@" = X -a "X`uname -s`" = "XLinux" ]; then
|
|
|
|
./configure --prefix=/usr "$@"
|
|
|
|
else
|
|
|
|
./configure "$@"
|
|
|
|
fi
|