diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-21 14:41:07 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-21 14:41:07 +0200 |
commit | 8dff78b7400452d7530376b2f64a3dc77b3f4efa (patch) | |
tree | c46b406b93264ef7b55f15d7fa937d56ff79ddb7 /Makefile | |
parent | Pretty good start (diff) | |
download | 42-minishell-8dff78b7400452d7530376b2f64a3dc77b3f4efa.tar.gz 42-minishell-8dff78b7400452d7530376b2f64a3dc77b3f4efa.tar.bz2 42-minishell-8dff78b7400452d7530376b2f64a3dc77b3f4efa.tar.xz 42-minishell-8dff78b7400452d7530376b2f64a3dc77b3f4efa.tar.zst 42-minishell-8dff78b7400452d7530376b2f64a3dc77b3f4efa.zip |
Good
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |