From 8dff78b7400452d7530376b2f64a3dc77b3f4efa Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Tue, 21 Apr 2020 14:41:07 +0200 Subject: Good --- Makefile | 6 +++--- libft/Makefile | 4 ++-- 2 files changed, 5 insertions(+), 5 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 diff --git a/libft/Makefile b/libft/Makefile index 398e29b..a5fabcb 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -148,10 +148,10 @@ ${NAME}: ${OBJS} #------------------------------------------------------------------------------# all: ${NAME} #------------------------------------------------------------------------------# -debug: CFLAGS += -ggdb +debug: CFLAGS += -glldb debug: all #------------------------------------------------------------------------------# -asan: CFLAGS += -ggdb +asan: CFLAGS += -glldb asan: CFLAGS += -fsanitize=address asan: all #------------------------------------------------------------------------------# -- cgit v1.2.3