Améliorations des dépendances circulaire

This commit is contained in:
2025-02-04 21:25:16 +01:00
parent c20a508069
commit 1f31e318dc
35 changed files with 156 additions and 58 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