ajout machin de build

This commit is contained in:
phyto 2019-05-21 13:44:38 +02:00
父節點 d3b399d4fa
當前提交 2362957692
共有 2 個文件被更改,包括 29 次插入1 次删除

查看文件

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

25
build.sh Executable file
查看文件

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