Ajout du test n°14 pour vérifier la suppression d'un fichier source et la recompilation avec Bake et Make
This commit is contained in:
5
tests/C/test-14-remove-source-and-rebuild/bake/Bakefile
Normal file
5
tests/C/test-14-remove-source-and-rebuild/bake/Bakefile
Normal file
@@ -0,0 +1,5 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -Wextra -c
|
||||
|
||||
test.o: test.c
|
||||
$(CC) $(CFLAGS) -o test.o test.c
|
6
tests/C/test-14-remove-source-and-rebuild/bake/test.c
Normal file
6
tests/C/test-14-remove-source-and-rebuild/bake/test.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
printf("Hello, Bake!\n");
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user