aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f52c084..3798958 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-default: run
+default: all
#==============================================================================#
#--------------------------------- Shell --------------------------------------#
#==============================================================================#
@@ -23,6 +23,8 @@ SRCS_NAME += ft_exit.c
SRCS_NAME += ft_drawsquare.c
SRCS_NAME += ft_parse_map.c
SRCS_NAME += ft_get_res.c
+SRCS_NAME += ft_get_tex.c
+SRCS_NAME += ft_free_words.c
SRCS_NAME += ft_map_error.c
SRCS_NAME += ft_init_winlx.c
#------------------------------------------------------------------------------#
@@ -46,7 +48,11 @@ endif
DEBUG = -g3
FSANITIZE = -fsanitize=address
#------------------------------------------------------------------------------#
+ifeq (${OS}, Darwin)
NAME = cub3d
+else
+NAME = a.out
+endif
#==============================================================================#
#--------------------------------- UNIX ---------------------------------------#
#==============================================================================#