aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-01-24 17:57:20 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-01-24 17:57:20 +0100
commit6776a1f3491663c85480326e0d01f9a6c5455bbd (patch)
tree035435a20e933c43b192552a5b3f766fe55131e5 /Makefile
parentft_split redone (diff)
download42-cub3d-6776a1f3491663c85480326e0d01f9a6c5455bbd.tar.gz
42-cub3d-6776a1f3491663c85480326e0d01f9a6c5455bbd.tar.bz2
42-cub3d-6776a1f3491663c85480326e0d01f9a6c5455bbd.tar.xz
42-cub3d-6776a1f3491663c85480326e0d01f9a6c5455bbd.tar.zst
42-cub3d-6776a1f3491663c85480326e0d01f9a6c5455bbd.zip
Tons of changes
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 ---------------------------------------#
#==============================================================================#