Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
542 B
39 lines
542 B
#!/bin/bash |
|
|
|
# ------------------------------------------------------------------ |
|
|
|
function build |
|
{ |
|
echo ============= $1 ============== |
|
curdir=${PWD} |
|
cd $1 |
|
make |
|
error=$? |
|
cd ${curdir} |
|
|
|
if [ ${error} -ne 0 ] |
|
then |
|
echo === error on $1 = ${error} |
|
exit 1 |
|
fi |
|
} |
|
|
|
# ------------------------------------------------------------------ |
|
|
|
build lib |
|
build funcs |
|
build tools |
|
build v4l2 |
|
build Fonderie |
|
|
|
# ------------------------------------------------------------------ |
|
|
|
|
|
make |
|
|
|
# ------------------------------------------------------------------ |
|
|
|
|
|
|
|
|
|
|
|
|