#!/bin/bash

rm -f model.c
rm -f $2

echo "Creating model.c file from $1 ..."
mod $1

shopt -s extglob

if test $2; 
 then target=$2;
 else target=mcsim.${1%.mod?('el')};
fi;

if test -f model.c; then \

	echo; \
	echo "Compiling and linking model for debugging ..."; \
	/usr/bin/clang -DDEBUG -g -I/opt/local/include model.c /opt/local/share/mcsim/sim/*.c -o $target -lm -lgsl -lgslcblas -lsundials_cvodes -lsundials_nvecserial -llapack  -Wall; \

fi;

if test -f $target; then \

	echo "Created executable $target with debugging symbols"; \
	echo; \

fi;
