je veux merge

This commit is contained in:
2024-10-28 12:07:31 +01:00
parent 9ba0c335b0
commit a324b1742c
2 changed files with 9 additions and 9 deletions

View File

@@ -14,7 +14,7 @@ OFILES = deplacement.o \
CC = gcc
CFLAGS = -Wall -ansi -pedantic -g -lgraph
CFLAGS = -Wall -ansi -pedantic -g
# CHAPITRE 3 : DEPENDANCES (REGLES IMPLICITES)
@@ -34,7 +34,7 @@ obstacle.o : pion.o
# CHAPITRE 4 : DEPENDANCES AVEC COMMANDES
game : $(OFILES)
$(CC) $(CFLAGS) -o game $(OFILES)
$(CC) $(CFLAGS) -o game $(OFILES) -lgraph
# CHAPITRE 5 : NETTOYAGE DES FICHIERS GENERES