mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 09:58:09 +01:00
Started bonus part
- added bonus rules in makefile - added a BONUS define for bonus - added a conditional check for characters
This commit is contained in:
parent
34db19c1a2
commit
5c1d469cac
7 changed files with 93 additions and 27 deletions
5
Makefile
5
Makefile
|
|
@ -1,11 +1,12 @@
|
|||
CC=cc
|
||||
SANITIZERS=-fsanitize=address -fno-omit-frame-pointer
|
||||
CFLAGS=-Wall -Wextra -Werror -ggdb $(SANITIZERS) -I mlx
|
||||
CFLAGS=-Wall -Wextra -Werror -g $(SANITIZERS) -I mlx
|
||||
SOURCEFILES=src/main.c \
|
||||
src/map/map_checker.c \
|
||||
src/map/checkers.c \
|
||||
src/map/setters.c \
|
||||
src/utils/frees.c
|
||||
src/utils/frees.c \
|
||||
src/map/forbidden_characters.c
|
||||
OBJECTS=$(patsubst src/%.c,objects/%.o,$(SOURCEFILES))
|
||||
OBJDIR=objects
|
||||
NAME=cub3d
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue