diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
@@ -90,6 +90,7 @@ SRCS_NAME += ft_floor_cast_inits.c SRCS_NAME += ft_suffer_animation.c SRCS_NAME += ft_draw_traps.c SRCS_NAME += ft_draw_traps_extra.c +SRCS_NAME += ft_draw_life_bar.c #--------------------------------------------------------------------------------------------------# SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME}) #--------------------------------------------------------------------------------------------------# @@ -113,18 +114,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 |