blob: eba4a6148954aa3e175751e641175d3a9d64cc63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/bin/sh
# Make a library file for BeOS on x86
#--identification------------------------------------------------------
# $Id: mklib.beos-x86,v 1.1.4.1 2000/12/01 20:37:45 gareth Exp $
# $Log: mklib.beos-x86,v $
# Revision 1.1.4.1 2000/12/01 20:37:45 gareth
# Merge with trunk (almost there!).
#
# Revision 1.1 2000/11/30 17:31:30 dawes
# Initial revision
#
# 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-------------------------------------------------------------
# build system library pathnames
SYSLIBNAMES="libroot.so.LIB libbe.so.LIB glue-noinit.a init_term_dyn.o start_dyn.o lib3DfxGlide2X.so.LIB"
for i in `echo $BELIBRARIES | sed "s/;/ /g"`
do
for j in $SYSLIBNAMES
do
if [ -e $i/$j ] ; then SYSLIBS="$SYSLIBS $i/$j" ; fi
done
done
# remove previous library before linking to avoid duplicate symbols
rm ../lib/$LIBRARY 2>/dev/null
# Other libraries which we may be dependent on. Since we make the libraries
# in the order libMesaGL.a, libMesaGLU.a, libMesatk.a, libMesaaux.a each
# just depends on its predecessor.
# (code picked up from mklib.aix)
OTHERLIBS=`ls ../lib/*.so.LIB 2>/dev/null`
mwccx86 -sharedlibrary -pragma 'export on' $SYSLIBS $OTHERLIBS -o $LIBRARY $OBJECTS
|