14 lines
250 B
Bash
Executable file
14 lines
250 B
Bash
Executable file
#!/bin/bash
|
|
|
|
autoreconf -vfi
|
|
|
|
if type -p colorgcc > /dev/null ; then
|
|
export CC=colorgcc
|
|
fi
|
|
|
|
export CFLAGS=${CFLAGS-"-g -O0"}
|
|
|
|
if test "x$NOCONFIGURE" = "x"; then
|
|
./configure --enable-maintainer-mode --disable-processing "$@"
|
|
make clean
|
|
fi
|