From 0a9962269c3ff9942cc82411565720b4b6c5c988 Mon Sep 17 00:00:00 2001 From: Moncef STITI Date: Sat, 8 Feb 2025 19:38:11 +0100 Subject: [PATCH] Correction de l'indentation pour le Makefile/Bakefile du test-05 --- tests/C/test-05-variables/bake/Bakefile | 2 +- tests/C/test-05-variables/make/Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/C/test-05-variables/bake/Bakefile b/tests/C/test-05-variables/bake/Bakefile index ce381e7..5de6181 100644 --- a/tests/C/test-05-variables/bake/Bakefile +++ b/tests/C/test-05-variables/bake/Bakefile @@ -5,4 +5,4 @@ EXECUTABLE = main SOURCE = main.c main: main.c - $(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE) + $(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE) \ No newline at end of file diff --git a/tests/C/test-05-variables/make/Makefile b/tests/C/test-05-variables/make/Makefile index 65fb3ef..5de6181 100644 --- a/tests/C/test-05-variables/make/Makefile +++ b/tests/C/test-05-variables/make/Makefile @@ -1,8 +1,8 @@ FLAGS = -ansi -pedantic -COMPILATEUR = gcc +COMPILATEUR = gcc OPTIONS = -o EXECUTABLE = main SOURCE = main.c -$(EXECUTABLE): $(SOURCE) - $(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE) +main: main.c + $(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE) \ No newline at end of file