echo loading $1
if test -f a.out; then
  rm a.out
fi

ld -i -X \
	$2 $3 $4 $5 $6 $7 $8 $9 \
	$UNIFY/libx.a \
	-ltermcap  -lm  -lc

if test -f a.out; then
    size a.out
    chmod 777 a.out
    mv a.out $1
    echo $1 loaded as $1
else
    echo $1 not loaded
fi
