if (echo $1 | grep -s "\.a")
then
	# a library
	if (echo $N_MODE | grep -s SIM_SRAM)
	then
	    \rm -f $N_LIB/$1
	    ln -s `pwd`/$1 $N_LIB/$1 
	    \ranlib $1
	else
	    echo Libraries not used for N10 binaries
	fi
else
	# an executable
	for n
	do
	    \rm -f $N_BIN/$n
	    ln -s `pwd`/$n $N_BIN/$n 
	done
fi

