This commit is contained in:
2023-12-12 17:39:55 +01:00
parent b43956a0a6
commit f0a2ca328b
8 changed files with 103 additions and 49 deletions

View File

@@ -8,6 +8,7 @@ but : run
OFILES = plateau_init.o \
fenetre.o \
deplacement.o \
main.o
CC = gcc
@@ -16,11 +17,13 @@ CFLAGS = -ansi -pedantic -lgraph
### REGLES ESSENTIELLES ###
plateau_init.o : plateau_init.h
plateau_init.o : plateau_init.h
fenetre.o : fenetre.h plateau_init.h
main.o : main.c fenetre.h
deplacement.o : deplacement.h
main.o : main.c fenetre.h deplacement.h
### COMMANDES ###