paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | #! /bin/sh |
2 | # | ||||
3 | # When local system does not have the latest autoconf/automake | ||||
4 | # -- Kunihiro Ishiguro <kunihiro@zebra.org> | ||||
5 | # | ||||
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 6 | |
gdt | cf31388 | 2004-06-30 13:24:42 +0000 | [diff] [blame] | 7 | rm -f config.cache Makefile.in aclocal.m4 config.h.in configure |
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 8 | rm -rf config.guess config.sub ltmain.sh |
gdt | cf31388 | 2004-06-30 13:24:42 +0000 | [diff] [blame] | 9 | rm -rf autom4te.cache |
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 10 | |
paul | 0fc4294 | 2004-08-19 04:41:21 +0000 | [diff] [blame] | 11 | echo "This $0 script is deprecated, and will be removed at some stage." |
12 | echo "Please use the 'autoreconf' command included with autoconf." | ||||
13 | |||||
gdt | 2990460 | 2004-08-17 12:27:32 +0000 | [diff] [blame] | 14 | echo "TOOLS VERIONS:" |
15 | for tool in autoheader autoconf libtool libtoolize aclocal automake; do | ||||
16 | $tool --version | head -1 | ||||
17 | done | ||||
18 | |||||
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 19 | echo "ACLOCAL:" |
paul | 72e2d82 | 2004-09-13 04:57:03 +0000 | [diff] [blame] | 20 | aclocal -I m4 |
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 21 | echo "AUTOHEADER:" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 22 | autoheader |
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 23 | echo "AUTOCONF:" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 24 | autoconf |
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 25 | echo "LIBTOOLIZE:" |
paul | ddb07e5 | 2004-09-27 07:49:57 +0000 | [diff] [blame] | 26 | libtoolize -c |
Greg Troxel | cf4a2bb | 2007-02-02 16:52:38 +0000 | [diff] [blame] | 27 | echo "AUTOMAKE" |
paul | 14c17fd | 2004-11-07 22:34:23 +0000 | [diff] [blame] | 28 | automake --gnu --add-missing --copy |