1#!/bin/bash 2 3EXTENSION_PATH=$1 4 5pushd $EXTENSION_PATH 6make clean || true 7set -e 8# Add following in configure for debug: --enable-debug CFLAGS='-g -O0' 9phpize && ./configure CFLAGS='-g -O0' && make 10popd 11