diff options
author | Andrew Kaster <andrewdkaster@gmail.com> | 2020-04-11 12:24:07 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-11 22:41:05 +0200 |
commit | 21b5909dc6c912809f0ff2fd4798f0d613b36c14 (patch) | |
tree | 6de075abe62c33671da24790120d3f1232060e82 /Kernel/Makefile | |
parent | 6b0f47683c78b0b9482efb7c95e42bb9a2bcaf7f (diff) | |
download | serenity-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/Makefile | 4 |
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 \ |