Oublie : Ajout des fichiers de test pour la dépendance inexistante du test 13
This commit is contained in:
parent
1bafee8e5c
commit
547086887d
7
tests/C/test-13-dependancy-dont-exist/bake/Bakefile
Normal file
7
tests/C/test-13-dependancy-dont-exist/bake/Bakefile
Normal file
@ -0,0 +1,7 @@
|
||||
all: main
|
||||
|
||||
main: main.c test
|
||||
gcc -o main main.c
|
||||
|
||||
clean:
|
||||
rm -f main
|
7
tests/C/test-13-dependancy-dont-exist/bake/main.c
Normal file
7
tests/C/test-13-dependancy-dont-exist/bake/main.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void){
|
||||
printf("Ceci est un test pour la SAé !");
|
||||
return 0;
|
||||
}
|
7
tests/C/test-13-dependancy-dont-exist/make/Makefile
Normal file
7
tests/C/test-13-dependancy-dont-exist/make/Makefile
Normal file
@ -0,0 +1,7 @@
|
||||
all: main
|
||||
|
||||
main: main.c test
|
||||
gcc -o main main.c
|
||||
|
||||
clean:
|
||||
rm -f main
|
7
tests/C/test-13-dependancy-dont-exist/make/main.c
Normal file
7
tests/C/test-13-dependancy-dont-exist/make/main.c
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void){
|
||||
printf("Ceci est un test pour la SAé !");
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user