build(make): adding the debug flag -g

This commit is contained in:
Raphael 2025-12-13 13:35:45 +01:00
parent 091dd32dc0
commit 4a20982777
No known key found for this signature in database

View file

@ -25,7 +25,7 @@ ASFLAGS += -g -F dwarf
CC ?= clang
RM = rm -rf
CFLAGS = -Werror -Wextra -Wall
CFLAGS += -Wno-unused-result
CFLAGS += -Wno-unused-result -g
TEST_FILE = test/main.c
INC_DIR = includes
LDFLAGS = -L./build/ -lasm -no-pie