mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:17:44 +00:00
Build ELFLoader into Kernel.
This commit is contained in:
parent
3649638259
commit
c149d2a8f0
7 changed files with 81 additions and 52 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue