diff --git a/Makefile b/Makefile
index e800a1c66cd6963565980871fee4e7bb451cf6fa..42f1d8222d0b2a1d7099cf7fd5a3960d88881461 100644
--- a/Makefile
+++ b/Makefile
@@ -39,7 +39,7 @@ KERNEL_OBJ   = sextant.elf
 all: $(KERNEL_OBJ)
 
 $(KERNEL_OBJ): multiboot.o main.o
-	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/$@ build/all-o/main.o build/all-o/multiboot.o
 
 #####################################