Modification des tests (Création de répertoire make et bake)

This commit is contained in:
2025-02-06 18:54:15 +01:00
parent c28c877ce8
commit 2a6599c5ae
68 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
FLAGS = -ansi -pedantic
FLAGSS = $(FLAGS)
FLAGSSS = $(FLAGSS)
main: main.c
gcc $(FLAGSSS) -o main main.c

View File

@@ -0,0 +1,6 @@
FLAGS = -ansi -pedantic
FLAGSS = $(FLAGS)
FLAGSSS = $(FLAGSS)
main: main.c
gcc $(FLAGSSS) -o main main.c

View File

@@ -0,0 +1 @@
# Test 6 : Gestion des variables en cascade

View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Ceci est un programme de test du Bakefile !\n");
return 0;
}