summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-12-13 22:07:15 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-12-13 22:07:15 -0500
commit79645cf1ba246d393cea94f274c15c34519c3f88 (patch)
tree2e745d57568be966bf914aa7c52d368d2f03dcf6
parent5328b793681e795947fcc3d36914258fb0688329 (diff)
remove autogen.sh, just use `autoreconf -if`
-rwxr-xr-xautogen.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 59a5d45..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh
-
-# run this to generate all initial .in files etc
-
-# copy some files from automake/autoconf into place
-[ -r /usr/share/misc/config.sub ] && \
- cp -f /usr/share/misc/config.sub config.sub
-[ -r /usr/share/misc/config.guess ] && \
- cp -f /usr/share/misc/config.guess config.guess
-for fname in INSTALL ar-lib compile depcomp install-sh missing \
- mkinstalldirs py-compile test-driver
-do
- [ -r /usr/share/automake-1.14/$fname ] && \
- cp -f /usr/share/automake-1.14/$fname $fname
-done
-
-# generate aclocal.m4 from configure.ac
-aclocal
-
-# generate config.h.in from configure.ac
-autoheader --warnings=all --force
-
-# generate Makefile.in from Makefile.am and configure.ac
-automake --warnings=all --add-missing --copy --force-missing
-
-# generate configure from configure.ac
-autoconf --warnings=all --force