vpx/scripts/aom_conf_build.sh
Yi Luo c7fad3924b Apply rm -fr ./* before cmake
Change-Id: Ida487b0f54267dbcfd152b7b5f5507afafbb950a
2018-01-23 11:03:51 -08:00

23 lines
352 B
Bash
Executable File

#!/bin/sh
#set -x
root_dir=$1
build_dir=$root_dir/release
script_dir=~/Dev/sandbox/libvpx/scripts
exp_tool=
cd $build_dir
make clean > /dev/null
rm -fr ./*
$script_dir/aom_nightly_config.sh
make -j > /dev/null
if [ $? -ne 0 ]; then
echo "AV1 build failed!"
exit 1
fi
test_dir=~/Dev/nightly
cp -f ./aomenc $test_dir/.
cp -f ./aomdec $test_dir/.