From 3af41494e5982d8c4afbffea14973c1baf80c12d Mon Sep 17 00:00:00 2001 From: rognant Date: Fri, 15 Dec 2023 21:16:09 +0100 Subject: [PATCH] t --- Makefile => makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename Makefile => makefile (94%) diff --git a/Makefile b/makefile similarity index 94% rename from Makefile rename to makefile index 8d9f224..e30425a 100644 --- a/Makefile +++ b/makefile @@ -1,7 +1,7 @@ snake : graphique.o pommes.o serpent.o obstacles.o main.o gcc -o snake graphique.o serpent.o pommes.o obstacles.o main.o -lgraph -run : exec - ./exec +run : snake + ./snake graphique.o : graphique.c gcc -c graphique.c -lgraph serpent.o : serpent.c