# Compile psolve.c and move the executable to ~/bin

echo Compiling psolve...
cc $* -O -Wall -o psolve psolve.c -lgsl -lgslcblas || exit
if [ -d ~/bin ] ; then
mv psolve ~/bin || exit
fi
echo Done.
