restructuring directory

This commit is contained in:
Roel Verdult
2009-06-03 08:07:58 +00:00
parent 7203015ed9
commit 4188f99a20
33 changed files with 71 additions and 54 deletions

30
automake/autogen.sh Executable file
View File

@@ -0,0 +1,30 @@
#!/bin/sh
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
touch README
LIBTOOLIZE=libtoolize
SKIP_PCSC="0"
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
echo "Running aclocal..." ; aclocal $ACLOCAL_ARGS -I . || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
echo "Running libtoolize..." ; $LIBTOOLIZE --force --automake || exit 1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi