blob: 654e0bb15c43f29e3b08c6a207d76f571474c780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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" "$@"
|