]> git.dujemihanovic.xyz Git - nameless-os.git/blobdiff - Makefile
Rework interrupt handling
[nameless-os.git] / Makefile
index f254d0c8ed42952a44a7d1cd42ad6c699b727b63..c3510938c72abeee53245b818c089643614c2dad 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ export GIT_REV = $(shell git describe --long HEAD)
 
 CFLAGS = -g -fgnu89-inline -Ikernel/include -Ikernel/include/arch/x86 -ffreestanding -DGIT_COMMIT=\"$(GIT_REV)\"
 
-KERNEL_OBJ = kernel/entry.o kernel/arch/x86/halt.o kernel/arch/x86/tty/tty.o kernel/drivers/irq/i8259a.o kernel/arch/x86/irq/idt.o kernel/arch/x86/irq/sample_handler.o kernel/kernel.o
+KERNEL_OBJ = kernel/entry.o kernel/arch/x86/halt.o kernel/arch/x86/tty/tty.o kernel/drivers/irq/i8259a.o kernel/arch/x86/irq/idt.o kernel/arch/x86/irq/interrupt.o kernel/arch/x86/irq/stub.o kernel/kernel.o
 
 BOOTLOADER_OBJ = boot/x86/mbr boot/x86/vbr-fat32 boot/x86/stage3/LOADER.BIN boot/x86/stage3/loader.elf