#!/bin/sh aclocal if [ "$1" = "--dist" ]; then automake -acfi else automake -acf fi autoheader autoconf if [ "$1" = "--debug" ]; then ./configure CPPFLAGS="-I/sw/include -I/usr/include/httpd/xml" \ LDFLAGS=-L/sw/lib CXXFLAGS="-g" --enable-debug elif [ "$1" = "--opt" ]; then ./configure CPPFLAGS="-I/sw/include -I/usr/include/httpd/xml" \ LDFLAGS=-L/sw/lib CXXFLAGS="-fomit-frame-pointer -fastf -mcpu=7450" elif [ "$1" = "--perf" ]; then ./configure CPPFLAGS="-I/sw/include -I/usr/include/httpd/xml" \ LDFLAGS=-L/sw/lib CXXFLAGS="-g -pg" fi