#!/usr/bin/sh
if test "x${NRNHOME}" = "x" ; then
    NRNHOME="/usr"
fi
if test "${NEURONHOME}" = "" ; then
    NEURONHOME=${NRNHOME}/share/nrn
    export NEURONHOME
fi
if test "x${NRNBIN}" = "x" ; then
    NRNBIN="/usr/bin"
fi
if test "" = "yes" ; then
    NRNIV="${NRNBIN}/nrniv.app/Contents/MacOS/nrniv"
else
    NRNIV="${NRNBIN}/nrniv"
fi
"${NRNIV}" -dll "/builddir/build/BUILD/PyNN-0.9.6/build/lib/pyNN/neuron/nmodl/ppc64le/.libs/libnrnmech.so" "$@"
