From 2362957692d031bda0247bd5b251c698becbd487 Mon Sep 17 00:00:00 2001 From: phyto Date: Tue, 21 May 2019 13:44:38 +0200 Subject: [PATCH] ajout machin de build --- Makefile | 5 ++++- build.sh | 25 +++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100755 build.sh diff --git a/Makefile b/Makefile index 63a6f0a..4cc1262 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -# +######################################################### + +# MAIN PROGGY + # must be run with gnu make # diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..f2e71f2 --- /dev/null +++ b/build.sh @@ -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 + + +# ------------------------------------------------------------------