summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 771a439..862a99a 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ NAME = minishell
#------------------------------------------------------------------------------#
HISTFILE = minishell_history
#------------------------------------------------------------------------------#
-LFT_SRCS = $(shell find ${LFT_SRCS_DIR} -name "*.c")
+LFT_SRCS = $(shell find ${LFT_SRCS_DIR} -name "*.c")
#==============================================================================#
#-------------------------------- COMPILER ------------------------------------#
#==============================================================================#
@@ -77,11 +77,11 @@ $(NAME): ${OBJS} ${LFT_SRCS} ${LFT_INCS_DIR}libft.h
#------------------------------------------------------------------------------#
all: ${NAME}
#------------------------------------------------------------------------------#
-debug: CFLAGS += -ggdb
+debug: CFLAGS += -glldb
debug: LFTRULE = debug
debug: all
#------------------------------------------------------------------------------#
-asan: CFLAGS += -ggdb
+asan: CFLAGS += -glldb
asan: CFLAGS += -fsanitize=address
asan: LFTRULE = asan
asan: all