Ajout du test n°14 pour vérifier la suppression d'un fichier source et la recompilation avec Bake et Make

This commit is contained in:
2025-02-09 17:59:59 +01:00
parent 547086887d
commit b2ebd69808
5 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
CC = gcc
CFLAGS = -Wall -Wextra -c
test.o: test.c
$(CC) $(CFLAGS) -o test.o test.c