diff options
author | Benji Dial <benji@benjidial.net> | 2024-01-13 19:14:58 -0500 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-01-13 19:14:58 -0500 |
commit | e9898e829b8df7c0b16faec1ce490369c53fd78e (patch) | |
tree | 0959298e7af3e5b9e40ac4d6dec0cec089105eac /makefile | |
parent | 4130562b1555cabe441efe9420cebe12e7ed8d39 (diff) | |
download | hilbert-os-e9898e829b8df7c0b16faec1ce490369c53fd78e.tar.gz |
minimal cpu exception handling
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -41,7 +41,8 @@ obj/kernel/%.asm.o: kernel/%.asm KERNEL_OBJECTS = allocator.cpp application.cpp entry.cpp framebuffer.cpp \ paging.asm paging.cpp storage.cpp storage/bd/memory.cpp terminal.cpp \ - storage/fs/tarfs.cpp utility.cpp vfile.cpp syscall.asm syscall.cpp + storage/fs/tarfs.cpp utility.cpp vfile.cpp syscall.asm syscall.cpp \ + interrupts.asm interrupts.cpp obj/kernel.elf: ${KERNEL_OBJECTS:%=obj/kernel/%.o} ld ${KLD_ARGS} $^ -o $@ |