]>
Commit | Line | Data |
---|---|---|
718e3744 | 1 | #! /bin/sh |
2 | # | |
3 | # When local system does not have the latest autoconf/automake | |
4 | # -- Kunihiro Ishiguro <kunihiro@zebra.org> | |
5 | # | |
29904606 | 6 | |
cf313889 | 7 | rm -f config.cache Makefile.in aclocal.m4 config.h.in configure |
cf4a2bbe | 8 | rm -rf config.guess config.sub ltmain.sh |
cf313889 | 9 | rm -rf autom4te.cache |
29904606 | 10 | |
0fc42949 | 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 | ||
29904606 | 14 | echo "TOOLS VERIONS:" |
15 | for tool in autoheader autoconf libtool libtoolize aclocal automake; do | |
16 | $tool --version | head -1 | |
17 | done | |
18 | ||
cf4a2bbe | 19 | echo "ACLOCAL:" |
72e2d828 | 20 | aclocal -I m4 |
cf4a2bbe | 21 | echo "AUTOHEADER:" |
718e3744 | 22 | autoheader |
cf4a2bbe | 23 | echo "AUTOCONF:" |
718e3744 | 24 | autoconf |
cf4a2bbe | 25 | echo "LIBTOOLIZE:" |
ddb07e5b | 26 | libtoolize -c |
cf4a2bbe | 27 | echo "AUTOMAKE" |
14c17fd8 | 28 | automake --gnu --add-missing --copy |