mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 05:09:12 +00:00
Build ELFLoader into Kernel.
This commit is contained in:
parent
3649638259
commit
c149d2a8f0
Notes:
sideshowbarker
2024-07-19 18:46:21 +09:00
Author: https://github.com/awesomekling
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