Crank up alarm value.
[awesomized/libmemcached] / bootstrap.sh
1 #!/bin/bash
2
3 if test -f configure; then make clean; make merge-clean; make distclean; fi;
4
5 rm -r -f autom4te.cache/ config.h config.log config.status
6 ./config/autorun.sh
7 if [ $(uname) = "Darwin" ];
8 then
9 ./configure CC=clang CXX=clang++ --enable-assert
10 else
11 ./configure --enable-assert
12 fi
13 make