: +
: name:		ftos
: purpose:	compile file using f86
: description:	felarca, 8jun85
: -
if test $# -eq 0
then
	echo Usage: ftos filename [options]
	exit 1
fi
echo _ftos for $1.f86
tr 'a-z' 'A-Z' <$1.f86 >/tmp/ftos.f86
f86 -l $1.fls -o /tmp/ftos.s86 $2 /tmp/ftos.f86
sed -e /NLIST/d /tmp/ftos.s86 >$1.s86
echo _listing: $1.fls, output: $1.s86
rm /tmp/ftos.f86 /tmp/ftos.s86
exit 0
