summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorCraig Small <csmall@enc.com.au>2002-03-04 02:11:03 +0000
committerCraig Small <csmall@enc.com.au>2002-03-04 02:11:03 +0000
commitb0fd93bdc59a7dd5afb28eb825869f06dcc5b186 (patch)
treea1df048fc724e259daafe37a1313785b55be2a42 /autogen.sh
parentf32ee38be8a8caec7bdb59d9de5ba29c4ef94b8a (diff)
removed some stuff that shouldnt be there
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..1b15b61
--- /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 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