This commit is contained in:
nub31
2025-09-01 20:49:15 +02:00
parent 7c6ff5d52d
commit 5927756988
6 changed files with 53 additions and 5 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_C := src/kernel.c src/string.c src/vga.c src/interrupts.c src/keyboard.c
SRC_ASM := src/start.asm
OBJ_C := $(SRC_C:src/%.c=.build/%.o)