#!/bin/sh
# $Id: buildconf,v 1.3.10.1 2004/08/09 18:32:59 andrei Exp $

rm -f build2/generated_lists

PHPIZE=phpize

for bc_option
do
	bc_optarg=`expr "x$bc_option" : 'x[^=]*=\(.*\)'`

	case $bc_option in
		--with-phpize=*)
		if [ "x$bc_optarg" != "x" ]; then
			rm -f buildmk.stamp
			PHPIZE=$bc_optarg
		fi
		;;
	esac
done

PHPIZE=$PHPIZE ${MAKE:-make} -s -f build2/build.mk
