diff options
author | Jan Holesovsky <kendy@suse.cz> | 2009-06-25 23:52:42 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2009-06-26 00:23:43 +0200 |
commit | 061104ffd1600013cd3b74da95b9c56fd12eca62 (patch) | |
tree | f00dd358aebdc4634fcb47e4d6a89291ddfaa463 /autogen.sh | |
parent | e1c272704de130e8397a17fae6712247123cf248 (diff) |
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.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 11 |
1 files changed, 11 insertions, 0 deletions
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 |