summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 2af1bdaa27..84d425e40b 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -35,6 +35,7 @@ OBJS = \
stat.o \
ping.o \
uc.o \
+ tc.o \
rm.o
APPS = \
@@ -75,6 +76,7 @@ APPS = \
stat \
ping \
uc \
+ tc \
rm
ARCH_FLAGS =
@@ -208,6 +210,8 @@ ping: ping.o
uc: uc.o
$(LD) -o $@ $(LDFLAGS) $< -lc
+tc: tc.o
+ $(LD) -o $@ $(LDFLAGS) $< -lc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<