From 3f71ed51a54f47f16b5560366c5febdb44298eba Mon Sep 17 00:00:00 2001 From: Yann CHAMPEAU Date: Mon, 26 Dec 2022 17:10:05 +0100 Subject: [PATCH] =?UTF-8?q?R=C3=A9glage=20du=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3e0b356..d65dfa5 100644 --- a/Makefile +++ b/Makefile @@ -2,10 +2,10 @@ PHONY : clean doc all all : prog prog : - Make -C src all + make -C src all doc : - Make -C src doc + make -C src doc clean : - Make -C src clean + make -C src clean