mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-01 14:14:45 +00:00
7 lines
138 B
Bash
7 lines
138 B
Bash
|
#!/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 ..
|