aboutsummaryrefslogtreecommitdiffstats
path: root/libft
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-09 14:48:28 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-09 14:48:28 +0100
commit39c371a659a65ec14fffde12c79f8f140078e215 (patch)
tree90d226d6a136e37d93dd4c2306b26b0b0976af46 /libft
parentthe very smartest (diff)
download42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.gz
42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.bz2
42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.xz
42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.tar.zst
42-cub3d-39c371a659a65ec14fffde12c79f8f140078e215.zip
CC back to clang only
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 1f93f13..d2053ee 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -119,18 +119,10 @@ USER = $(shell w | grep tty7 | awk '{print $$1}')
#==============================================================================#
#-------------------------------- Compiler ------------------------------------#
#==============================================================================#
-ifeq (${OS}, Darwin)
- DEBUG = -glldb
-else
- DEBUG = -ggdb
-endif
+DEBUG = -glldb
FSANITIZE = -fsanitize=address
#------------------------------------------------------------------------------#
-ifeq (${OS}, Darwin)
- CC = clang
-else
- CC = gcc
-endif
+CC = clang
#------------------------------------------------------------------------------#
CFLAGS = -std=c89
CFLAGS += -Wall