summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-19 08:00:24 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-19 08:00:24 +0000
commited15e2bcc26311ef953123f0c847d44f31eaa64b (patch)
tree3fde7e72eedc5b3cfc28503939ceebbea444d979 /autogen.sh
parent65a90780c0672064a6b68ac75c51eb72d4455799 (diff)
Remove all generated files.
Keeping generated files in CVS doesn't only tend to produce large and cluttered files it also may result in build problems due to timestamps in the wrong order. So dump everything, update .cvsignore to ignore these files and resolve all warnings generated by autoreconf. From now on users of a CVS checkout should run the command autoreconf --install --force after having done a CVS checkout. For this to succeed automake, autoconf and libtool will have to be installed.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 1b15b61..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/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