#!/bin/sh

# Make a library file for BeOS R4

#--identification------------------------------------------------------

# $Id: mklib.beos-r4,v 1.2 1999/09/15 15:10:20 brianp Exp $

# $Log: mklib.beos-r4,v $
# Revision 1.2  1999/09/15 15:10:20  brianp
# added third, tiny version number to arguments
#
# Revision 1.1  1999/08/19 13:52:59  brianp
# initial check-in (post-crash)
#


#--common--------------------------------------------------------------

LIBRARY=$1
shift 1

MAJOR=$1
shift 1

MINOR=$1
shift 1

TINY=$1
shift 1

OBJECTS=$*

#--platform-------------------------------------------------------------

gcc -nostart -Xlinker -soname=$LIBRARY -L/Be/develop/lib/x86 $OBJECTS -lbe -o $LIBRARY

