mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 04:28:08 +00:00
7 lines
208 B
Bash
Executable file
7 lines
208 B
Bash
Executable file
#/bin/sh
|
|
for i in `find ../../libvpx/ -name "*asm"`;
|
|
do
|
|
newname=`echo ${i} |sed 's/\.asm/.s/'`
|
|
echo "Converting : ${i} -> ${newname}"
|
|
cat ${i}|perl ../../libvpx/build/make/ads2gas.pl > ${newname};
|
|
done
|