blob: c56775f018dd905029fd50f809c5f76023c6b5a1 (
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
|
#!/bin/sh
#
# libupdate: Update a library based on a file of object files.
#
# Usage: libupdate <library> <object filelist> <directory>
#
ARADD="@ARADD@"
ARCHIVE="@ARCHIVE@"
force=
arcmd="$ARADD"
if test "$1" = "--force"
then
force=yes
arcmd="$ARCHIVE"
shift
fi
library=$1
oblist=$2
dir=$3
stamp=`echo $library | sed -e 's/.a$/.stamp/'`
if test "$force" != yes -a -f $stamp && \
ls -lt $stamp $oblist | sed 1q | grep $stamp$ > /dev/null || \
test -z "`cat $oblist`"
then
exit 0
fi
echo "Updating library $library from $oblist"
$arcmd $library `cat $oblist | \
sed -e "s;^\([^ ]*\);$dir/\1;g" -e "s; \([^ ]*\); $dir/\1;g"`
|