DD2-monitor/build.sh

26 lines
344 B
Bash
Raw Normal View History

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