2002-06-29 05:01:49 +02:00
|
|
|
#!/bin/sh
|
2007-08-17 23:53:57 +02:00
|
|
|
|
2010-09-27 17:20:12 +02:00
|
|
|
if [ -x "`which autoreconf 2>/dev/null`" ] ; then
|
2016-12-15 18:02:30 +01:00
|
|
|
opt="-i -f -W all,error"
|
2013-01-19 00:00:51 +01:00
|
|
|
|
|
|
|
for i in $@; do
|
|
|
|
case "$i" in
|
|
|
|
-v)
|
2016-12-15 18:02:30 +01:00
|
|
|
opt="${opt} -v"
|
2013-01-19 00:00:51 +01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
exec autoreconf $opt
|
2010-09-27 17:20:12 +02:00
|
|
|
fi
|
|
|
|
|
2007-08-17 23:53:57 +02:00
|
|
|
set -e
|
|
|
|
|
2002-06-29 05:01:49 +02:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2013-02-07 22:23:48 +01:00
|
|
|
aclocal -I m4 && \
|
2007-08-17 23:55:24 +02:00
|
|
|
autoheader && \
|
|
|
|
autoconf && \
|
|
|
|
automake --add-missing --copy
|