ajout machin de build

This commit is contained in:
phyto 2019-05-21 13:44:38 +02:00
vanhempi d3b399d4fa
commit 2362957692
2 muutettua tiedostoa jossa 29 lisäystä ja 1 poistoa

Näytä tiedosto

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

25
build.sh Executable file
Näytä tiedosto

@ -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
# ------------------------------------------------------------------