travaille

This commit is contained in:
2023-12-12 16:07:54 +01:00
parent f3aa5365f3
commit dc3a592f57
18 changed files with 427 additions and 15 deletions

11
makefile Normal file
View File

@@ -0,0 +1,11 @@
terrain: terrain.o serpent.o deplacement.o
gcc -o terrain terrain.o serpent.o deplacement.o
terrain.o: terrain.c serpent.h deplacement.h
gcc -c terrain.c
serpent.o: serpent.c serpent.h
gcc -c serpent.c
deplacement.o: deplacement.c deplacement.h
gcc -c deplacement.c