2009-05-04 10:00:08 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
rm -rf autom4te.cache
|
|
|
|
rm -f aclocal.m4 ltmain.sh
|
|
|
|
|
|
|
|
touch README
|
|
|
|
|
2009-06-30 12:53:53 +02:00
|
|
|
LIBTOOLIZE=libtoolize
|
|
|
|
case `uname -s` in
|
|
|
|
Darwin)
|
|
|
|
LIBTOOLIZE=glibtoolize
|
|
|
|
ACLOCAL_ARGS="-I /opt/local/share/aclocal/"
|
|
|
|
# SKIP_PCSC="1"
|
|
|
|
;;
|
|
|
|
FreeBSD)
|
|
|
|
ACLOCAL_ARGS="-I /usr/local/share/aclocal/"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-07-22 11:27:59 +02:00
|
|
|
echo "Running aclocal..." ; aclocal $ACLOCAL_ARGS || exit 1
|
2009-05-04 10:00:08 +02:00
|
|
|
echo "Running autoheader..." ; autoheader || exit 1
|
|
|
|
echo "Running autoconf..." ; autoconf || exit 1
|
2009-06-30 12:53:53 +02:00
|
|
|
echo "Running libtoolize..." ; $LIBTOOLIZE --copy --automake || exit 1
|
2009-05-04 10:00:08 +02:00
|
|
|
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
|
|
|
|
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
|
|
./configure "$@"
|
|
|
|
fi
|