#!/usr/local/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 standalone model ..."; \
	cc -O3 -I/usr/local/include  -pipe -O2 -fno-strict-aliasing    model.c /usr/local/share/mcsim/sim/*.c -o $target -lm  -Wall; \

fi;

if test -f $target; then \

	echo "Cleaning up ..."; \
	rm -f model.c; \

	echo "Created standalone executable $target"; \
	echo; \

fi;
