1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:17:36 +00:00

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
This commit is contained in:
GuillaumeGas 2019-05-13 05:31:23 -07:00 committed by Andreas Kling
parent b7166385de
commit 801d6f572a
5 changed files with 329 additions and 2 deletions

View file

@ -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