FloatImg/build.sh

39 lines
525 B
Bash
Raw Normal View History

2019-03-04 02:22:55 +11:00
#!/bin/bash
2019-05-25 02:40:13 +11:00
# ------------------------------------------------------------------
function build
{
echo ============= $1 ==============
curdir=${PWD}
cd $1
make
2019-03-04 02:22:55 +11:00
error=$?
2019-05-25 02:40:13 +11:00
cd ${curdir}
2019-03-04 02:22:55 +11:00
2019-05-25 02:40:13 +11:00
if [ ${error} -ne 0 ]
then
echo === error on $1 = ${error}
exit
2019-03-04 02:22:55 +11:00
fi
2019-05-25 02:40:13 +11:00
}
# ------------------------------------------------------------------
build lib
build funcs
build tools
2019-06-05 19:57:39 +11:00
build v4l2
2019-05-25 02:40:13 +11:00
# ------------------------------------------------------------------
2019-03-04 02:22:55 +11:00
2019-05-25 03:34:07 +11:00
make
2019-08-03 23:27:21 +11:00
# ------------------------------------------------------------------
2019-03-04 02:22:55 +11:00