This commit is contained in:
Leo Firmin
2025-10-08 17:07:41 +02:00
parent a3e025e6b9
commit 2fa3015af4
29 changed files with 744 additions and 584 deletions
+2 -3
View File
@@ -1,5 +1,5 @@
CC = gcc
CFLAGS = -Wall -Wextra -Werror
CFLAGS = -fsanitize=address -g -Wall -Wextra -Werror
NAME = cub3d
SRCDIR = srcs
@@ -17,12 +17,11 @@ SRCS = $(SRCDIR)/main.c \
$(SRCDIR)/parsing/check_colors.c \
$(SRCDIR)/utils/utils.c \
$(SRCDIR)/utils/init.c \
$(SRCDIR)/utils/debug.c \
$(SRCDIR)/parsing/check_map.c \
$(SRCDIR)/parsing/check_map_2.c \
INCS = $(INCDIR)/parsing.h \
$(INCDIR)/cub.h \
$(INCDIR)/messages.h \
all: $(NAME)