summaryrefslogtreecommitdiff
path: root/Userland/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Makefile')
-rw-r--r--Userland/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Userland/Makefile b/Userland/Makefile
index 6acf59947b..2af1bdaa27 100644
--- a/Userland/Makefile
+++ b/Userland/Makefile
@@ -34,6 +34,7 @@ OBJS = \
env.o \
stat.o \
ping.o \
+ uc.o \
rm.o
APPS = \
@@ -73,6 +74,7 @@ APPS = \
env \
stat \
ping \
+ uc \
rm
ARCH_FLAGS =
@@ -203,6 +205,10 @@ stat: stat.o
ping: ping.o
$(LD) -o $@ $(LDFLAGS) $< -lc
+uc: uc.o
+ $(LD) -o $@ $(LDFLAGS) $< -lc
+
+
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<