#!/bin/sh
#
#	makelib
#
#	Updates and/or creates a library that resides in /usr/lib. 
#	The archive contains all the object files in the current directory.
#

library=$1
ar r $library `ls *.o`
#ranlib $library
ar t $library

