From b7569587bbd57c56d4b5dbc9116e681e5175e772 Mon Sep 17 00:00:00 2001 From: Christopher Uhlig Date: Mon, 5 Aug 2024 13:20:11 +0200 Subject: [PATCH] added -g flagg for compile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4ac27f7..1eaae01 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ NAME := minishell CC = cc -CFLAGS = -Wall -Wextra -Werror +CFLAGS = -Wall -Wextra -Werror -g LIB_DIR = lib LIBS = -L $(LIB_DIR)/libft -lft -lreadline HEADERS = -I include -I $(LIB_DIR)/libft -- 2.47.2