#!/bin/sh
if test "x${NRNHOME}" = "x" ; then
	NRNHOME="/home/andrew/Apps/NEURON/build/7.1"
fi
if test "x${NRNBIN}" = "x" ; then
	NRNBIN="/home/andrew/Apps/NEURON/build/7.1/x86_64/bin/"
fi
if test "" = "yes" ; then
	NRNIV="${NRNBIN}nrniv.app/Contents/MacOS/nrniv"
else
	NRNIV="${NRNBIN}nrniv"
fi
"${NRNIV}" -dll "/home/andrew/dev/destexhe_jcns_2009/demo_cx-lts/x86_64/.libs/libnrnmech.so" "$@"
