summaryrefslogtreecommitdiff
path: root/Kernel/Makefile
diff options
context:
space:
mode:
authorAndrew Kaster <andrewdkaster@gmail.com>2020-04-11 12:24:07 -0600
committerAndreas Kling <kling@serenityos.org>2020-04-11 22:41:05 +0200
commit21b5909dc6c912809f0ff2fd4798f0d613b36c14 (patch)
tree6de075abe62c33671da24790120d3f1232060e82 /Kernel/Makefile
parent6b0f47683c78b0b9482efb7c95e42bb9a2bcaf7f (diff)
downloadserenity-21b5909dc6c912809f0ff2fd4798f0d613b36c14.zip
LibELF: Move ELF classes into namespace ELF
This is for consistency with other namespace changes that were made a while back to the other libraries :)
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r--Kernel/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index c38060f6ee..dd066001cb 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -9,8 +9,8 @@ OBJS = \
../AK/StringImpl.o \
../AK/StringUtils.o \
../AK/StringView.o \
- ../Libraries/LibELF/ELFImage.o \
- ../Libraries/LibELF/ELFLoader.o \
+ ../Libraries/LibELF/Image.o \
+ ../Libraries/LibELF/Loader.o \
../Libraries/LibBareMetal/Output/Console.o \
../Libraries/LibBareMetal/Output/kprintf.o \
../Libraries/LibBareMetal/StdLib.o \