summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-10-31 19:49:22 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-10-31 19:54:25 +0100
commit9886b27d9cc67221efc8ee7e277570d146ee9992 (patch)
tree5021bcfb8c68c0f7a7bc371240fbc35c514329bc /Userland/Makefile
parent819ce91395804d4ae9ac07d0080d3cfbed4ea258 (diff)
downloadserenity-9886b27d9cc67221efc8ee7e277570d146ee9992.zip
Add getpwent() family of functions to LibC.
Also add a little /etc/passwd database. There's just me in there.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 21b0b9ff91..87d1e0809f 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -3,7 +3,6 @@ OBJS = \
sh.o \
ps.o \
ls.o \
- pwd.o \
sleep.o \
date.o \
true.o \
@@ -21,7 +20,6 @@ APPS = \
sh \
ps \
ls \
- pwd \
sleep \
date \
true \
@@ -64,9 +62,6 @@ ps: ps.o
ls: ls.o
$(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a
-pwd: pwd.o
- $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a
-
sleep: sleep.o
$(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a