From 9886b27d9cc67221efc8ee7e277570d146ee9992 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 31 Oct 2018 19:49:22 +0100 Subject: Add getpwent() family of functions to LibC. Also add a little /etc/passwd database. There's just me in there. --- Userland/Makefile | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Userland/Makefile') 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 -- cgit v1.2.3