#!/bin/sh # Run this to generate all the initial makefiles, etc. set -e srcdir=`dirname $0` test -z "$srcdir" && srcdir=. cd "$srcdir" mkdir -p m4 >/dev/null 2>&1 || true intltoolize --force autoreconf --verbose --force --install cd - test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"