mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
9 lines
295 B
Bash
Executable file
9 lines
295 B
Bash
Executable file
#!/bin/sh
|
|
|
|
topdir=`pwd`
|
|
|
|
cd submodules/libilbc-rfc3951 && ./autogen.sh && ./configure && make || ( echo "iLBC prepare stage failed" ; exit -1 )
|
|
|
|
cd $topdir/submodules/externals/build/libvpx && ./asm_conversion.sh && cp *.asm *.h ../../libvpx/ || ( echo "VP8 prepare stage failed." ; exit -1 )
|
|
|
|
|