From e2ae41e27d178738a3ff0d03222bcdfc38b1895c Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 20 May 2008 13:40:41 +0200 Subject: removed .hg* files and renamed hgcompile to gitcompile --- gitcompile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 gitcompile (limited to 'gitcompile') diff --git a/gitcompile b/gitcompile new file mode 100755 index 0000000..f4d8a64 --- /dev/null +++ b/gitcompile @@ -0,0 +1,17 @@ +#!/bin/bash + +touch ltconfig +libtoolize --force --copy --automake +aclocal $ACLOCAL_FLAGS +autoheader +automake --foreign --copy --add-missing +touch depcomp # seems to be missing for old automake +autoconf +export CFLAGS='-O2 -Wall -W -pipe -g' +echo "CFLAGS=$CFLAGS" +echo "./configure $@" +./configure $@ || exit 1 +unset CFLAGS +if [ -z "$GITCOMPILE_NO_MAKE" ]; then + make +fi -- cgit