added MorphOS instructions (Matt Sealey)
[mesa.git] / bin / mklib.ar-ruv
1 #!/bin/sh
2
3 # Make a standard Unix .a library file with 'ar ruv'
4
5 #--identification------------------------------------------------------
6
7 # $Id: mklib.ar-ruv,v 1.2 1999/09/15 15:10:20 brianp Exp $
8
9 # $Log: mklib.ar-ruv,v $
10 # Revision 1.2 1999/09/15 15:10:20 brianp
11 # added third, tiny version number to arguments
12 #
13 # Revision 1.1 1999/08/19 13:52:57 brianp
14 # initial check-in (post-crash)
15 #
16
17
18 #--common--------------------------------------------------------------
19
20 LIBRARY=$1
21 shift 1
22
23 MAJOR=$1
24 shift 1
25
26 MINOR=$1
27 shift 1
28
29 TINY=$1
30 shift 1
31
32 OBJECTS=$*
33
34 #--platform-------------------------------------------------------------
35
36 #ar ruv $LIBRARY $OBJECTS
37 ar ru $LIBRARY $OBJECTS
38