diff options
author | Robin Burchell <robin+git@viroteck.net> | 2019-05-17 15:35:30 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-17 15:49:37 +0200 |
commit | 77dfd419e9b0890e3e7c92c1c62e2776fca83035 (patch) | |
tree | 3d6652e8bedee6eb679314119b1c132178391d84 /Kernel | |
parent | 190111e21a08cbfd2a981bb7cb96747af1091d5c (diff) | |
download | serenity-77dfd419e9b0890e3e7c92c1c62e2776fca83035.zip |
LibCore: Move AK/ArgsParser to LibCore/CArgsParser
Also rename the classes to match LibCore naming style.
This means that it's no longer incorrectly linked into LibC and Kernel.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index d8f6f750a8..87559d70cf 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -78,8 +78,7 @@ AK_OBJS = \ ../AK/StringBuilder.o \ ../AK/StringView.o \ ../AK/FileSystemPath.o \ - ../AK/StdLibExtras.o \ - ../AK/ArgsParser.o + ../AK/StdLibExtras.o CXX_OBJS = $(KERNEL_OBJS) $(VFS_OBJS) $(AK_OBJS) OBJS = $(CXX_OBJS) Boot/boot.ao |