blob: 1eaeb3904deb8a9d0cd3a8476868f703a9136fc3 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | #! /bin/sh
#
# When local system does not have the latest autoconf/automake
#        -- Kunihiro Ishiguro <kunihiro@zebra.org>
#
rm -f config.cache
rm -f Makefile.in
rm -f aclocal.m4
rm -f config.h.in
rm -f configure
aclocal
autoheader
autoconf
automake --foreign
 |