diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 19:49:22 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-31 19:54:25 +0100 |
commit | 9886b27d9cc67221efc8ee7e277570d146ee9992 (patch) | |
tree | 5021bcfb8c68c0f7a7bc371240fbc35c514329bc /Userland/Makefile | |
parent | 819ce91395804d4ae9ac07d0080d3cfbed4ea258 (diff) | |
download | serenity-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/Makefile | 5 |
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 |