aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:23:42 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-24 18:23:42 +0200
commit25333a9167fb26ae3850cb891facd024248e2ab2 (patch)
treeb0ce9f7f2b7c31936bc6116cf947ffc66157c198 /Makefile
parentYou fucktard (diff)
download42-cub3d-25333a9167fb26ae3850cb891facd024248e2ab2.tar.gz
42-cub3d-25333a9167fb26ae3850cb891facd024248e2ab2.tar.bz2
42-cub3d-25333a9167fb26ae3850cb891facd024248e2ab2.tar.xz
42-cub3d-25333a9167fb26ae3850cb891facd024248e2ab2.tar.zst
42-cub3d-25333a9167fb26ae3850cb891facd024248e2ab2.zip
Back to clang
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index cc6c3ee..609f91d 100644
--- a/Makefile
+++ b/Makefile
@@ -160,18 +160,10 @@ endif
#==================================================================================================#
#------------------------------------------ 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