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