1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:17:45 +00:00

Move ELFLoader code into Kernel/.

This commit is contained in:
Andreas Kling 2018-12-02 20:27:08 +01:00
parent ac7a60225e
commit 44036f32bc
10 changed files with 5 additions and 27 deletions

View file

@ -20,7 +20,9 @@ KERNEL_OBJS = \
TTY.o \
VirtualConsole.o \
FIFO.o \
Scheduler.o
Scheduler.o \
ELFImage.o \
ELFLoader.o
VFS_OBJS = \
../VirtualFileSystem/DiskDevice.o \
@ -37,10 +39,6 @@ VFS_OBJS = \
../VirtualFileSystem/FileDescriptor.o \
../VirtualFileSystem/SyntheticFileSystem.o
ELFLOADER_OBJS = \
../ELFLoader/ELFImage.o \
../ELFLoader/ELFLoader.o
AK_OBJS = \
../AK/String.o \
../AK/StringImpl.o \