aboutsummaryrefslogtreecommitdiffstats
path: root/libft/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'libft/Makefile')
-rw-r--r--libft/Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/libft/Makefile b/libft/Makefile
index 2bd6342..8ad24a7 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -118,18 +118,10 @@ OS = $(shell uname)
#==============================================================================#
#-------------------------------- Compiler ------------------------------------#
#==============================================================================#
-ifeq (${OS}, Linux)
- DBG = -ggdb
-else
- DBG = -glldb
-endif
+DBG = -glldb
FSANITIZE = -fsanitize=address
#------------------------------------------------------------------------------#
-ifeq (${OS}, Linux)
- CC = gcc
-else
- CC = clang
-endif
+CC = clang
#------------------------------------------------------------------------------#
CFLAGS = -std=c89
CFLAGS += -Wall