ajout machin de build

Este commit está contenido en:
phyto 2019-05-21 13:44:38 +02:00
padre d3b399d4fa
commit 2362957692
Se han modificado 2 ficheros con 29 adiciones y 1 borrados

Ver fichero

@ -1,4 +1,7 @@
#
#########################################################
# MAIN PROGGY
# must be run with gnu make
#

25
build.sh Archivo ejecutable
Ver fichero

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