DD2-monitor/build.sh

26 lines
344 B
Bash
Executable File

#!/bin/bash
# ------------------------------------------------------------------
function build
{
echo === $1 ===
cd $1
make t
error=$?
cd ..
echo error ${error}
}
# ------------------------------------------------------------------
build serial
build ui
make essai
# ------------------------------------------------------------------