aboutsummaryrefslogtreecommitdiffstats
path: root/libft
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-24 14:56:13 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-24 14:56:13 +0100
commitcafb2eb464347c47c3cee1a766c3b96ccf66e5fa (patch)
tree7a77609a887f3ca0a87c1bd3458485d5ba73e0f6 /libft
parentRam issues fixed (diff)
download42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.gz
42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.bz2
42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.xz
42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.tar.zst
42-cub3d-cafb2eb464347c47c3cee1a766c3b96ccf66e5fa.zip
Back to clang
Diffstat (limited to 'libft')
-rw-r--r--libft/Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/libft/Makefile b/libft/Makefile
index 3073304..8ad24a7 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -118,18 +118,10 @@ OS = $(shell uname)
#==============================================================================#
#-------------------------------- Compiler ------------------------------------#
#==============================================================================#
-ifeq (${OS}, Darwin)
- DBG = -glldb
-else
- DBG = -ggdb
-endif
+DBG = -glldb
FSANITIZE = -fsanitize=address
#------------------------------------------------------------------------------#
-ifeq (${OS}, Darwin)
- CC = clang
-else
- CC = gcc
-endif
+CC = clang
#------------------------------------------------------------------------------#
CFLAGS = -std=c89
CFLAGS += -Wall