mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
Continued parser
This commit is contained in:
parent
5bc41d1a1f
commit
1d16d66d89
5 changed files with 78 additions and 18 deletions
4
Makefile
4
Makefile
|
|
@ -1,5 +1,7 @@
|
|||
CC=cc
|
||||
CFLAGS=-Wall -Wextra -Werror -g -fsanitize=address -fno-omit-frame-pointer -I mlx
|
||||
SANITIZERS=
|
||||
#-fsanitize-address -fno-omit-frame-pointer
|
||||
CFLAGS=-Wall -Wextra -Werror -g $(SANITIZERS) -I mlx
|
||||
SOURCEFILES=src/main.c \
|
||||
src/map/map_checker.c
|
||||
OBJECTS=$(patsubst src/%.c,objects/%.o,$(SOURCEFILES))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue