mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-04-12 01:26:19 +00:00
restructuring directory
This commit is contained in:
30
automake/autogen.sh
Executable file
30
automake/autogen.sh
Executable 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
|
||||
Reference in New Issue
Block a user