diff options
author | salaaad2 <arthudurant263@gmail.com> | 2020-03-10 16:16:08 +0100 |
---|---|---|
committer | salaaad2 <arthudurant263@gmail.com> | 2020-03-10 16:16:08 +0100 |
commit | 0d589d0038624e3123e6166f6521d1421dd69b23 (patch) | |
tree | 26db0ad344a9c730192eea0bff01bb410ba225b7 /libft | |
parent | still retard (diff) | |
parent | ok now (diff) | |
download | 42-cub3d-0d589d0038624e3123e6166f6521d1421dd69b23.tar.gz 42-cub3d-0d589d0038624e3123e6166f6521d1421dd69b23.tar.bz2 42-cub3d-0d589d0038624e3123e6166f6521d1421dd69b23.tar.xz 42-cub3d-0d589d0038624e3123e6166f6521d1421dd69b23.tar.zst 42-cub3d-0d589d0038624e3123e6166f6521d1421dd69b23.zip |
merge master
Diffstat (limited to '')
-rw-r--r-- | libft/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
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 |