blob: 4e055bc585d7d09d4c6452243c3c969f96be4fb6 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001#! /bin/sh
2#
3# When local system does not have the latest autoconf/automake
4# -- Kunihiro Ishiguro <kunihiro@zebra.org>
5#
gdt29904602004-08-17 12:27:32 +00006
gdtcf313882004-06-30 13:24:42 +00007rm -f config.cache Makefile.in aclocal.m4 config.h.in configure
8rm -rf autom4te.cache
gdt29904602004-08-17 12:27:32 +00009
paul0fc42942004-08-19 04:41:21 +000010echo "This $0 script is deprecated, and will be removed at some stage."
11echo "Please use the 'autoreconf' command included with autoconf."
12
gdt29904602004-08-17 12:27:32 +000013echo "TOOLS VERIONS:"
14for tool in autoheader autoconf libtool libtoolize aclocal automake; do
15 $tool --version | head -1
16done
17
18echo "UPDATING:"
paul72e2d822004-09-13 04:57:03 +000019aclocal -I m4
paul718e3742002-12-13 20:15:29 +000020autoheader
21autoconf
paulddb07e52004-09-27 07:49:57 +000022libtoolize -c
paul14c17fd2004-11-07 22:34:23 +000023automake --gnu --add-missing --copy
24