1
0
Fork 0

ajout machin de build

Esse commit está contido em:
phyto 2019-05-21 13:44:38 +02:00
commit 2362957692
2 arquivos alterados com 29 adições e 1 exclusões

Ver arquivo

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

25
build.sh Executable file
Ver arquivo

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