#!/bin/bash

#	------------------------------------------------------------------
#	NOTE: This will link a .o program in the languageONE 
#	directory
#	------------------------------------------------------------------
if ld -o $1 $1.o -e_l1 lib/languageONE.lib; then
	echo link process has completed
fi

