summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-11 20:42:41 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-11 20:42:41 +0100
commit18e3ddf6058d86f22df9fd90f6ad7f3a3833909f (patch)
treeb6cb5d3612577a6f169f8fba4f5ff4cb64fb9fa2 /Userland/Makefile
parentd5d45d1088d28b7640bcc3013810b38c702c3933 (diff)
downloadserenity-18e3ddf6058d86f22df9fd90f6ad7f3a3833909f.zip
Add a naive /bin/fgrep for testing pipes.
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile5
1 files changed, 5 insertions, 0 deletions
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