blob: 1b15b61f7b2f22887cd732858240ee8927a62c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
#
# autogen.sh glue for ax25-tools
# $Id: autogen.sh,v 1.1 2002/03/04 02:11:03 csmall Exp $
#
# Requires: automake, autoconf, dpkg-dev
set -e
# Refresh GNU autotools toolchain.
aclocal
autoheader
automake --verbose --foreign --add-missing
# The automake package already links config.sub/guess to /usr/share/misc/
for i in config.guess config.sub missing install-sh mkinstalldirs ; do
test -r /usr/share/automake/${i} && cp -f /usr/share/automake/${i} .
chmod 755 ${i}
done
autoconf
exit 0
|