summaryrefslogtreecommitdiffstats
path: root/autogen.sh
blob: 9e5365e9f6e2efeb09a07251875e3ee40616d279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

set -e # exit on errors

srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.


(
    cd "$srcdir"
    autoreconf --verbose --force --install
)

CONFIGURE_ARGS="--enable-maintainer-mode --enable-code-generator"

if [ -z "$NOCONFIGURE" ]; then
    echo "Running configure with $CONFIGURE_ARGS $@"
    "$srcdir/configure" $CONFIGURE_ARGS "$@"
fi