summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorGuillaumeGas <guillaume@gas-ntic.fr>2019-05-13 05:31:23 -0700
committerAndreas Kling <awesomekling@gmail.com>2019-05-13 14:31:23 +0200
commit801d6f572af8e874e725a53652ba00615238bcfd (patch)
tree630afaf6fc6db5cd1a00f3f4774c4a9b46fc9ead /Kernel
parentb7166385deb8939567735925f2e967f40452bec9 (diff)
downloadserenity-801d6f572af8e874e725a53652ba00615238bcfd.zip
Feature/pidof (#31)
* Added killall command * Fixed feedbacks of awesomekling * Implemented pidof program and helper to parse arguments called ArgsParser. * Fixed feedbacks in pidof implem. Fixes #26
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile
index 265b143cb0..af0321c651 100644
--- a/Kernel/Makefile
+++ b/Kernel/Makefile
@@ -75,7 +75,8 @@ AK_OBJS = \
../AK/StringBuilder.o \
../AK/StringView.o \
../AK/FileSystemPath.o \
- ../AK/StdLibExtras.o
+ ../AK/StdLibExtras.o \
+ ../AK/ArgsParser.o
CXX_OBJS = $(KERNEL_OBJS) $(VFS_OBJS) $(AK_OBJS)
OBJS = $(CXX_OBJS) Boot/boot.ao