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

LibELF: Move AK/ELF/ into Libraries/LibELF/

Let's arrange things like this instead. It didn't feel right for all of
the ELF handling code to live in AK.
This commit is contained in:
Andreas Kling 2019-11-06 13:42:38 +01:00
parent 31beff8afb
commit 49635e62fa
9 changed files with 11 additions and 11 deletions

View file

@ -100,8 +100,8 @@ AK_OBJS = \
../AK/JsonValue.o \
../AK/JsonParser.o \
../AK/LogStream.o \
../AK/ELF/ELFImage.o \
../AK/ELF/ELFLoader.o
../Libraries/LibELF/ELFImage.o \
../Libraries/LibELF/ELFLoader.o
CXX_OBJS = $(KERNEL_OBJS) $(VFS_OBJS) $(AK_OBJS)
OBJS = $(CXX_OBJS) Arch/i386/Boot/boot.ao