summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-05-17 15:35:30 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-17 15:49:37 +0200
commit77dfd419e9b0890e3e7c92c1c62e2776fca83035 (patch)
tree3d6652e8bedee6eb679314119b1c132178391d84 /Kernel
parent190111e21a08cbfd2a981bb7cb96747af1091d5c (diff)
downloadserenity-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/Makefile3
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