You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
138 B
7 lines
138 B
5 years ago
|
#!/bin/sh
|
||
|
cd $3.files
|
||
|
objxdef $(cat $3) |grep -v _lib_> syms.tmp
|
||
|
objchg -m=$2_* -s=syms.tmp $(cat $3)
|
||
|
wlib $3.a $(cat $3)
|
||
|
cp $3.a $4
|
||
|
cd ..
|