#!/bin/sh
if f2c $1 
then
	output=`basename $1 .f`
	csource=$output.c
	cc -o $output -O -f $csource -lF77 -lI77 -lm -lc
	rm $csource
fi
