From 9b89e21cfd02cba7a1f835ffb9927fd6c0ba70c0 Mon Sep 17 00:00:00 2001 From: Haffa Bakhouche Date: Thu, 21 Nov 2024 13:24:31 +0100 Subject: [PATCH] =?UTF-8?q?R=C3=A9gl=C3=A9=20le=20makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/makefile b/makefile index ce9e753..26534d6 100755 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CC = gcc # options de compilation -CFLAGS = -Wall -Wextra -Werror +CFLAGS = -Wall -Wextra LDFLAGS = -lgraph # nom de l'exécutable @@ -43,14 +43,8 @@ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c # nettoyage des fichiers objets clean: rm -rf $(OBJ_DIR) - -# nettoyage complet (fichiers objets et exécutable) -fclean: clean rm -f $(NAME) -# recompilation complète -re: fclean all - # exécution du programme run: all ./$(NAME)