summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-13 17:33:40 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-13 17:33:40 +0100
commit7aba68d51c5bbbe8ef3de914b26c2d388ee3cf57 (patch)
treea7fea5d7c29877e14df7274e1706aaed974cd9b6 /Userland/Makefile
parentc588653f76dcb579dd0e4bed04f6cf8ee4eee04c (diff)
downloadserenity-7aba68d51c5bbbe8ef3de914b26c2d388ee3cf57.zip
Userland+LibC: Add a new little "tc" program for testing TCP.
Also added send() and recv() to LibC in support of this. They are just wrappers around sendto() and recvfrom().
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 $<