diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 00:03:59 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-03-09 00:03:59 +0100 |
commit | f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44 (patch) | |
tree | eee8b9d4b5c570830c5c313d89569a1e6782e709 /libft | |
parent | More consitant music (diff) | |
download | 42-cub3d-f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44.tar.gz 42-cub3d-f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44.tar.bz2 42-cub3d-f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44.tar.xz 42-cub3d-f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44.tar.zst 42-cub3d-f9bbbc0211caaaf835fbaceb78f5b8d3417dfb44.zip |
The smartest Makefile
Diffstat (limited to 'libft')
-rw-r--r-- | libft/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/libft/Makefile b/libft/Makefile index 35c2b88..1f93f13 100644 --- a/libft/Makefile +++ b/libft/Makefile @@ -119,19 +119,27 @@ 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 CFLAGS += -Wextra CFLAGS += -Werror CFLAGS += -pedantic -CFLAGS += ${DEBUG} #------------------------------------------------------------------------------# ifdef ASAN + CFLAGS += ${DEBUG} CFLAGS += ${FSANITIZE} endif #------------------------------------------------------------------------------# |