#!/bin/sh echo "Bootstrapping libquant. When this script complains, you might" echo "need a newer version of automake." echo "2007, Jaap Versteegh " if `which automake-1.9 > /dev/null 2>&1`; then AUTOMAKE=automake-1.9 else AUTOMAKE=automake fi if `which aclocal-1.9 > /dev/null 2>&1`; then ACLOCAL=aclocal-1.9 else ACLOCAL=aclocal fi if [ ! -f include/libquant/config.h.in ]; then autoheader fi if [ ! -f config/ltmain.sh ]; then libtoolize fi $ACLOCAL \ && $AUTOMAKE --foreign --add-missing --copy \ && autoconf