This commit is contained in:
nub31
2025-09-01 19:18:38 +02:00
parent 385c0d432c
commit 1bc122e29a
10 changed files with 106 additions and 65 deletions

View File

@@ -6,7 +6,7 @@ CFLAGS = -m64 -ffreestanding -fno-builtin -Wall -Wextra -Wshadow -std=c23 -g
LDFLAGS = -g
ASFLAGS = -f elf64 -g -F dwarf
SRC_C := src/kernel.c src/string.c src/vga.c src/interrupts.c src/keyboard.c
SRC_C := src/kernel.c src/string.c src/vga.c src/interrupts.c
SRC_ASM := src/start.asm
OBJ_C := $(SRC_C:src/%.c=.build/%.o)