bootstrap.sh 269 B

123456789101112131415
  1. #!/bin/bash
  2. autoreconf -v -f -i
  3. if type -p colorgcc > /dev/null ; then
  4. export CC=colorgcc
  5. fi
  6. export CFLAGS=${CFLAGS-"-g -O0"}
  7. if test "x$NOCONFIGURE" = "x"; then
  8. ./configure --enable-maintainer-mode --disable-processing --enable-shave "$@"
  9. make clean
  10. fi