Améliorations du code + Du mode debug
This commit is contained in:
BIN
tests/bakefile.jar
Normal file
BIN
tests/bakefile.jar
Normal file
Binary file not shown.
BIN
tests/test-01-depuis-rien/bakefile.jar
Normal file
BIN
tests/test-01-depuis-rien/bakefile.jar
Normal file
Binary file not shown.
BIN
tests/test-02-existe-deja/bakefile.jar
Normal file
BIN
tests/test-02-existe-deja/bakefile.jar
Normal file
Binary file not shown.
@@ -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
|
||||
|
BIN
tests/test-03-circulaire/bakefile.jar
Normal file
BIN
tests/test-03-circulaire/bakefile.jar
Normal file
Binary file not shown.
Reference in New Issue
Block a user