summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index 92213cafaa..f650b3f24f 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -34,11 +34,16 @@ VFS_OBJS = \
../VirtualFileSystem/VirtualFileSystem.o \
../VirtualFileSystem/FileHandle.o
+ELFLOADER_OBJS = \
+ ../ELFLoader/ELFImage.o \
+ ../ELFLoader/ELFLoader.o \
+ ../ELFLoader/ExecSpace.o
+
AK_OBJS = \
../AK/String.o \
../AK/StringImpl.o
-OBJS = $(KERNEL_OBJS) $(VFS_OBJS) $(AK_OBJS)
+OBJS = $(KERNEL_OBJS) $(VFS_OBJS) $(AK_OBJS) $(ELFLOADER_OBJS)
NASM = nasm
KERNEL = kernel