summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
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 91c8f308c7..fc4b9af423 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -15,6 +15,7 @@ OBJS = \
mm.o \
kill.o \
ft.o \
+ strsignal.o \
tty.o
APPS = \
@@ -34,6 +35,7 @@ APPS = \
mm \
kill \
ft \
+ strsignal \
tty
ARCH_FLAGS =
@@ -105,6 +107,9 @@ kill: kill.o
tty: tty.o
$(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a
+strsignal: strsignal.o
+ $(LD) -o $@ $(LDFLAGS) $< ../LibC/LibC.a
+
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<