summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 7b14369..2d103b3 100644
--- a/makefile
+++ b/makefile
@@ -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 $@