From 35a7b48f99b64ddbd23eb1a264df7ea453b3f9a4 Mon Sep 17 00:00:00 2001
From: Rudy Bousset <rbousset@z2r4p3.le-101.fr>
Date: Mon, 9 Mar 2020 20:42:04 +0100
Subject: In progress, Makefile was bav back then

---
 libft/Makefile | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

(limited to 'libft')

diff --git a/libft/Makefile b/libft/Makefile
index d2053ee..1f93f13 100644
--- a/libft/Makefile
+++ b/libft/Makefile
@@ -119,10 +119,18 @@ USER		= $(shell w | grep tty7 | awk '{print $$1}')
 #==============================================================================#
 #-------------------------------- Compiler ------------------------------------#
 #==============================================================================#
-DEBUG		= -glldb
+ifeq (${OS}, Darwin)
+	DEBUG	= -glldb
+else
+	DEBUG	= -ggdb
+endif
 FSANITIZE	= -fsanitize=address
 #------------------------------------------------------------------------------#
-CC			= clang
+ifeq (${OS}, Darwin)
+	CC		= clang
+else
+	CC		= gcc
+endif
 #------------------------------------------------------------------------------#
 CFLAGS		= -std=c89
 CFLAGS		+= -Wall
-- 
cgit v1.2.3