From b1ae46aa0c6aa0cf9c4056cc3de3b5797c2434c3 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Thu, 24 Mar 2005 10:47:29 +0000 Subject: packaging related changes --- cvscompile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cvscompile (limited to 'cvscompile') diff --git a/cvscompile b/cvscompile new file mode 100644 index 0000000..41bd1f7 --- /dev/null +++ b/cvscompile @@ -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 "$CVSCOMPILE_NO_MAKE" ]; then + make +fi -- cgit