26 lines
377 B
Bash
Executable File
26 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# ------------------------------------------------------------------
|
|
|
|
function build
|
|
{
|
|
echo ============= $1 ==============
|
|
cd $1
|
|
make t
|
|
error=$?
|
|
cd ..
|
|
echo === error on $1 = ${error}
|
|
}
|
|
|
|
# ------------------------------------------------------------------
|
|
|
|
build serial
|
|
|
|
build ui
|
|
|
|
make essai
|
|
|
|
|
|
# ------------------------------------------------------------------
|