From 061104ffd1600013cd3b74da95b9c56fd12eca62 Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Thu, 25 Jun 2009 23:52:42 +0200 Subject: Split build: Remove files that should not be revision controlled. They are generated; so actually also add autogen.sh and Makefile.am to help to generate them :-) * Makefile.in: Bin. * aclocal.m4: Bin. * configure: Bin. * autogen.sh: New file. * Makefile.am: New file. --- autogen.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 000000000000..8183a7fb3151 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +aclocal $ACLOCAL_FLAGS || exit 1 +automake --gnu --add-missing --copy || exit 1 +autoconf || exit 1 + +if test "x$NOCONFIGURE" = "x"; then + ./configure "$@" +else + echo "Skipping configure process." +fi -- cgit