summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 2805c51d3b83d0e149e195e6f8b3dc28a4fd10a3 (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 01:26:44 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