diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -54,6 +54,9 @@ SRCS_NAME += ft_tex_init.c SRCS_NAME += ft_detect.c SRCS_NAME += ft_check_ext.c SRCS_NAME += ft_draw_textures.c +SRCS_NAME += ft_key_release.c +SRCS_NAME += ft_convert_keycode.c +SRCS_NAME += ft_key_loop.c #--------------------------------------------------------------------------------------------------# SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME}) #--------------------------------------------------------------------------------------------------# @@ -73,6 +76,9 @@ endif #==================================================================================================# #------------------------------------------ Compiler ----------------------------------------------# #==================================================================================================# +DEBUG = -glldb +FSANITIZE = -fsanitize=address +#--------------------------------------------------------------------------------------------------# CC = clang #--------------------------------------------------------------------------------------------------# CFLAGS = -std=c89 @@ -99,9 +105,6 @@ ifneq (${OS}, Darwin) CDEFS += -DFT_ESC_KEY=65307 endif #--------------------------------------------------------------------------------------------------# -DEBUG = -glldb -FSANITIZE = -fsanitize=address -#--------------------------------------------------------------------------------------------------# ifeq (${OS}, Darwin) NAME = cub3d else |