add: debug flag asm

This commit is contained in:
starnakin 2024-08-29 16:19:20 +02:00
parent 2062a09d21
commit 93a824ab30

View File

@ -9,7 +9,7 @@ CC = gcc
CFLAGS = -g
AS = nasm
ASFLAGS = -f elf64
ASFLAGS = -f elf64 -g
AR = ar
ARFLAGS =
@ -25,7 +25,6 @@ all : $(NAME)
test : $(NAME)
$(CC) $(CFLAGS) test/test.c $(BUILDDIR)/$(NAME) -o $(BUILDDIR)/test
$(BUILDDIR)/test
rm -rf $(BUILDDIR)/test
clean :
rm -rf $(OBJDIR)