Améliorations des différents tests

This commit is contained in:
2025-02-07 16:00:37 +01:00
parent 2cc6992f20
commit d7fa531f47
56 changed files with 23 additions and 59 deletions

View File

@@ -1,4 +1,8 @@
FLAGS = -ansi -pedantic
COMPILATEUR = gcc
OPTIONS = -o
EXECUTABLE = main
SOURCE = main.c
main: main.c
gcc $(FLAGS) -o main main.c
$(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE)

Binary file not shown.

Binary file not shown.

View File

@@ -1,4 +1,8 @@
FLAGS = -ansi -pedantic
COMPILATEUR = gcc
OPTIONS = -o
EXECUTABLE = main
SOURCE = main.c
main: main.c
gcc $(FLAGS) -o main main.c
$(EXECUTABLE): $(SOURCE)
$(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE)

View File

@@ -1 +0,0 @@
# Test 5 : Utilisation de variables

Binary file not shown.