Améliorations des dépendances circulaire
This commit is contained in:
4
tests/C/test-05-variables/Bakefile
Normal file
4
tests/C/test-05-variables/Bakefile
Normal file
@@ -0,0 +1,4 @@
|
||||
FLAGS = -ansi -pedantic
|
||||
|
||||
main: main.c
|
||||
gcc $(FLAGS) -o main main.c
|
1
tests/C/test-05-variables/README.md
Normal file
1
tests/C/test-05-variables/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# Test 5 : Utilisation de variables
|
6
tests/C/test-05-variables/main.c
Normal file
6
tests/C/test-05-variables/main.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Ceci est un programme de test du Bakefile !\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user