DD2-monitor/build.sh

26 lines
377 B
Bash
Raw Normal View History

2019-05-21 13:44:38 +02:00
#!/bin/bash
# ------------------------------------------------------------------
function build
{
echo ============= $1 ==============
2019-05-21 13:44:38 +02:00
cd $1
make t
error=$?
cd ..
echo === error on $1 = ${error}
2019-05-21 13:44:38 +02:00
}
# ------------------------------------------------------------------
build serial
build ui
make essai
# ------------------------------------------------------------------