#!/bin/sh -ex

if [ ! -e configure ]; then
	./autogen.sh;
fi;
exec ./configure CFLAGS=-ggdb3 --with-rundir="$PWD/run" "$@";
