From c63415562d73af4ae05acfe15389925cca500bf2 Mon Sep 17 00:00:00 2001 From: rohaut Date: Thu, 7 Dec 2023 14:08:27 +0100 Subject: [PATCH] =?UTF-8?q?Makefile=20termin=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- JEUX_SERPENT/{serpent => Jeux} | Bin JEUX_SERPENT/Makefile | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename JEUX_SERPENT/{serpent => Jeux} (100%) diff --git a/JEUX_SERPENT/serpent b/JEUX_SERPENT/Jeux similarity index 100% rename from JEUX_SERPENT/serpent rename to JEUX_SERPENT/Jeux diff --git a/JEUX_SERPENT/Makefile b/JEUX_SERPENT/Makefile index 7e46f00..78be397 100644 --- a/JEUX_SERPENT/Makefile +++ b/JEUX_SERPENT/Makefile @@ -1,10 +1,10 @@ CC=gcc CFLAGS=-ansi -pedantic -lgraph -all:serpent +all:Jeux -serpent:main.o scene.o serpent.o timer.o score.o - $(CC) $(CFLAGS) -o serpent main.o scene.o serpent.o timer.o score.o +Jeux:main.o scene.o serpent.o timer.o score.o + $(CC) $(CFLAGS) -o Jeux main.o scene.o serpent.o timer.o score.o main.o:main.c fonction.h $(CC) -c main.c $(CFLAGS) @@ -21,4 +21,4 @@ timer.o:timer.c fonction.h score.o:score.c fonction.h $(CC) -c score.c $(CFLAGS) -clean:-rm -f *.o serpent +clean:-rm -f *.o Jeux