From 1024b4bbe3b5989c842a76444cc6bef695e699f9 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 09:57:26 +0200 Subject: [PATCH] improve messages in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d99af4..7d10e5e 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,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