1
0

🏗️」 wip: Started keybind handling

This commit is contained in:
2024-09-12 13:41:58 +02:00
parent 4e30780f88
commit 621a7b8e21
4 changed files with 48 additions and 17 deletions

View File

@ -1,3 +1,5 @@
SHELL = bash
NAME = cub3D
CC = gcc
@ -14,12 +16,7 @@ MACRO_DIR = MacroLibX/
INCLUDE = -I $(I_DIR) -I $(LIBFT_DIR)/$(I_DIR) -I $(MACRO_DIR)/$(I_DIR)
SRCS = src/utils/mess_error.c \
src/utils/parse_utils.c \
src/parsing/check_map.c \
src/parsing/check_arg.c \
src/parsing/principal_pars.c \
src/cub3d.c
SRCS = $(shell find src -name '*.c')
OBJS = $(addprefix $(OBJSDIR), $(SRCS:.c=.o))