Build ELFLoader into Kernel.

This commit is contained in:
Andreas Kling 2018-10-18 15:03:10 +02:00
commit c149d2a8f0
Notes: sideshowbarker 2024-07-19 18:46:21 +09:00
7 changed files with 81 additions and 52 deletions

View file

@ -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