Ajout de nouveaux fichiers de test et suppression de fichiers obsolètes
This commit is contained in:
8
tests/test-05-variables/make/Makefile
Normal file
8
tests/test-05-variables/make/Makefile
Normal file
@@ -0,0 +1,8 @@
|
||||
FLAGS = -ansi -pedantic
|
||||
COMPILATEUR = gcc
|
||||
OPTIONS = -o
|
||||
EXECUTABLE = main
|
||||
SOURCE = main.c
|
||||
|
||||
main: main.c
|
||||
$(COMPILATEUR) $(FLAGS) $(OPTIONS) $(EXECUTABLE) $(SOURCE)
|
6
tests/test-05-variables/make/main.c
Normal file
6
tests/test-05-variables/make/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