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 3450d3d912..6acf59947b 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -33,6 +33,7 @@ OBJS = \
su.o \
env.o \
stat.o \
+ ping.o \
rm.o
APPS = \
@@ -71,6 +72,7 @@ APPS = \
su \
env \
stat \
+ ping \
rm
ARCH_FLAGS =
@@ -198,6 +200,9 @@ env: env.o
stat: stat.o
$(LD) -o $@ $(LDFLAGS) $< -lc
+ping: ping.o
+ $(LD) -o $@ $(LDFLAGS) $< -lc
+
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<