#!/bin/sh # Bootstrap, configure and make CLucene. # echo # echo "Running bootstrap..." # echo # cd ../../ # chmod +x bootstrap # ./bootstrap # cd ./build/gcc/ tgt=$HOME if test "$tgt" = ""; then tgt=/home/`whoami`/clucene.output else tgt=$tgt/clucene.output fi echo echo "Running configure... (install into $tgt)" echo ../../configure CXXFLAGS=-g CFLAGS=-g --prefix=$tgt --enable-utf8 echo echo "Running make..." echo make install