From 23c4a0c45506f3fd73d404d0f9e4c3f0e791f4be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Th=C3=A9o=20Le=20Calvar?= <theo.le-calvar@imt-atlantique.fr>
Date: Thu, 18 Aug 2022 11:09:00 +0200
Subject: [PATCH] improve messages in Makefile

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 3a5a89f..4776c54 100755
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,7 @@ OBJECTS = 	hal/boot.o							\
 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/linker.ld -o build/boot/$@ $(OBJ_FILES)
 
 # Create objects from C source code
-- 
GitLab