Ajout de plusieurs Makefiles pour les tests en C et Java -> Il faut un fichier Makefile et un Bakefile pour pouvoir comparer les résultats
This commit is contained in:
11
tests/C/test-03-circular/Makefile
Normal file
11
tests/C/test-03-circular/Makefile
Normal 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
|
Reference in New Issue
Block a user