#!/bin/sh
# autogen.sh for dircproxy
# Francois Harvey <fharvey at securiweb dot net>

if [ -f ./configure ]; then
	echo "No need to run autogen.sh, run autoreconf"
else
	aclocal
	autoheader
	automake --add-missing --copy
	autoconf
	./configure --enable-maintainer-mode ${1+"$@"}
fi


syntax highlighted by Code2HTML, v. 0.9.1