Améliorations du code + Du mode debug

This commit is contained in:
2025-02-04 17:31:25 +01:00
parent 238a02796b
commit 0af4eb8f1b
14 changed files with 215 additions and 80 deletions

BIN
tests/bakefile.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1,14 +1,11 @@
main: a.o b.o c.o
gcc a.o b.o c.o -o main
main: a b c
gcc a b c -o main
a.o: a.c a.h b.h
gcc -Wall -Werror -Wextra -c a.c -o a.o
a: a.c a.h b.h
gcc -Wall -Werror -Wextra -Pendatic -c a.c -o a
b.o: b.c b.h c.h
gcc -Wall -Werror -Wextra -c b.c -o b.o
b: b.c b.h c.h
gcc -Wall -Werror -Wextra -Pendatic -c b.c -o b
c.o: c.c c.h a.h
gcc -Wall -Werror -Wextra -c c.c -o c.o
clean:
rm -f a.o b.o c.o main
c: c.c c.h a.h
gcc -Wall -Werror -Wextra -Pendatic -c c.c -o c

Binary file not shown.