From 8ae19999b358da4cdbb97624352f7988e74f8430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Le=20Calvar?= <theo.le-calvar@imt-atlantique.fr> Date: Mon, 22 Aug 2022 10:35:20 +0200 Subject: [PATCH] improve messages in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d110e15..695cd32 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ all: $(KERNEL_OBJ) OBJ_FILES = $(wildcard build/all-o/*.o) $(KERNEL_OBJ): $(OBJECTS) - echo 'Votre compilateur $(COMPILATEUR) et votre lieur $(LIEUR)' + @echo 'Votre compilateur $($(COMPILATEUR)) et votre lieur $($(LIEUR))' $($(LIEUR)) $(LDFLAGS) -T ./support/sextant.lds -o build/boot/$@ $(OBJECTS) #compiler tout .cpp dans les repertoires de sources en .o dans le build/all-o . On cree d'abord le repertoire build/all-o s'il n'existe pas. -- GitLab