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 /LibC | |
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 'LibC')
-rw-r--r-- | LibC/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/LibC/Makefile b/LibC/Makefile index acdc8c0d15..ab307c5cbd 100644 --- a/LibC/Makefile +++ b/LibC/Makefile @@ -7,8 +7,7 @@ AK_OBJS = \ ../AK/StringBuilder.o \ ../AK/FileSystemPath.o \ ../AK/StdLibExtras.o \ - ../AK/MappedFile.o \ - ../AK/ArgsParser.o + ../AK/MappedFile.o LIBC_OBJS = \ SharedBuffer.o \ |