Le programme permet maintenant d'affichier un ecran qui fait la taille d'une grille 4*4

This commit is contained in:
2025-11-30 16:16:27 +01:00
parent 78c24a6541
commit 7e105c12d6
7 changed files with 74 additions and 10 deletions
+6 -3
View File
@@ -6,15 +6,18 @@ CFLAGS = -Wall \
LIBS = -lgraph
EXE = taquin
OFILES = main.o \
affichage.o
affichage.o \
partie.o
### BUT PAR DEFAUT ###
but : ${EXE}
### REGLES ESSENTIELLES ###
affichage.o : affichage.h
affichage.o : affichage.h config.h
main.o : affichage.h
partie.o : partie.h config.h
main.o : affichage.h partie.h config.h
${EXE} : ${OFILES}
$(CC) $(CFLAGS) -o ${EXE} ${OFILES} ${LIBS}