diff options
Diffstat (limited to 'qconf')
-rwxr-xr-x | qconf | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#!/bin/sh +topdir="${0%/*}" +if [ "$topdir" = "$0" ]; then + topdir=. +fi +abstopdir=$(readlink -f "$topdir") +if [ ! -e "${topdir}/configure" ]; then + cd "$topdir" + autoreconf -fi + cd - +fi +exec "$topdir/configure" CFLAGS="-O0 -ggdb3" CXXFLAGS="-O0 -ggdb3" "$@" |