summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-19 22:27:11 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-19 22:27:11 +0200
commit62afe606a355581c5b48cca361478c43fb6ae4cf (patch)
treea278fe2fdf44c296892616554743b9d380ff7afa /Makefile
parentAdded joe-sh_history to gitignore (diff)
download42-minishell-62afe606a355581c5b48cca361478c43fb6ae4cf.tar.gz
42-minishell-62afe606a355581c5b48cca361478c43fb6ae4cf.tar.bz2
42-minishell-62afe606a355581c5b48cca361478c43fb6ae4cf.tar.xz
42-minishell-62afe606a355581c5b48cca361478c43fb6ae4cf.tar.zst
42-minishell-62afe606a355581c5b48cca361478c43fb6ae4cf.zip
Well well well that wasn't too bad, now remake everything
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1dcc40e..a024d25 100644
--- a/Makefile
+++ b/Makefile
@@ -43,14 +43,14 @@ OBJS = $(patsubst ${SRCS_DIR}%.c,${OBJS_DIR}%.o,${SRCS})
#==============================================================================#
#-------------------------------- Compiler ------------------------------------#
#==============================================================================#
-CC = gcc
+CC = clang
CFLAGS = -Wall
CFLAGS += -Wextra
CFLAGS += -Werror
CFLAGS += ${DEBUG}
CFLAGS += ${FSANITIZE}
#------------------------------------------------------------------------------#
-DEBUG = -Og -ggdb
+DEBUG = -glldb
FSANITIZE = -fsanitize=address
#------------------------------------------------------------------------------#
NAME = minishell