File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / quagga / update-autotools
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 17:26:11 2012 UTC (12 years, 2 months ago) by misho
Branches: quagga, MAIN
CVS tags: v1_0_20160315, v0_99_22p0, v0_99_22, v0_99_21, v0_99_20_1, v0_99_20, HEAD
quagga

#! /bin/sh
#
# When local system does not have the latest autoconf/automake
#        -- Kunihiro Ishiguro <kunihiro@zebra.org>
#

rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
rm -rf config.guess config.sub ltmain.sh
rm -rf autom4te.cache

echo "This $0 script is deprecated, and will be removed at some stage."
echo "Please use the 'autoreconf' command included with autoconf."

echo "TOOLS VERIONS:"
for tool in autoheader autoconf libtool libtoolize aclocal automake; do
  $tool --version | head -1
done

echo "ACLOCAL:"
aclocal -I m4
echo "AUTOHEADER:"
autoheader
echo "AUTOCONF:"
autoconf
echo "LIBTOOLIZE:"
libtoolize -c
echo "AUTOMAKE"
automake --gnu --add-missing --copy

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>