From 18e3ddf6058d86f22df9fd90f6ad7f3a3833909f Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 11 Nov 2018 20:42:41 +0100 Subject: Add a naive /bin/fgrep for testing pipes. --- Userland/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Userland/Makefile') diff --git a/Userland/Makefile b/Userland/Makefile index cbd895b1f3..355dee1d8f 100644 --- a/Userland/Makefile +++ b/Userland/Makefile @@ -17,6 +17,7 @@ OBJS = \ ft.o \ ft2.o \ strsignal.o \ + fgrep.o \ tty.o APPS = \ @@ -38,6 +39,7 @@ APPS = \ ft \ ft2 \ strsignal \ + fgrep \ tty ARCH_FLAGS = @@ -70,6 +72,9 @@ ps: ps.o ls: ls.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a +fgrep: fgrep.o + $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a + sleep: sleep.o $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a -- cgit v1.2.3