summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 0000000..2805c51
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,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