Modification des tests (Création de répertoire make et bake)

This commit is contained in:
2025-02-06 18:54:15 +01:00
parent c28c877ce8
commit 2a6599c5ae
68 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
main: a b c
gcc a b c -o main
a: a.c a.h b.h
gcc -Wall -Werror -Wextra -ansi -pedantic -c a.c -o a
b: b.c b.h c.h
gcc -Wall -Werror -Wextra -ansi -pedantic -c b.c -o b
c: c.c c.h a.h
gcc -Wall -Werror -Wextra -ansi -pedantic -c c.c -o c