aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7c86a54..3a89cf8 100644
--- a/Makefile
+++ b/Makefile
@@ -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