aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index ca3f8ae..6a72280 100644
--- a/Makefile
+++ b/Makefile
@@ -99,18 +99,10 @@ endif
#==================================================================================================#
#------------------------------------------ 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