summaryrefslogtreecommitdiff
path: root/apps/netutils/telnetd/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/telnetd/Makefile')
-rw-r--r--apps/netutils/telnetd/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/netutils/telnetd/Makefile b/apps/netutils/telnetd/Makefile
index 736f1e130..7fb0ffa47 100644
--- a/apps/netutils/telnetd/Makefile
+++ b/apps/netutils/telnetd/Makefile
@@ -61,6 +61,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
+.PHONY: context depend clean distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@@ -68,13 +69,11 @@ $(AOBJS): %$(OBJEXT): %.S
$(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
-$(BIN): $(OBJS)
+.built: $(OBJS)
@( for obj in $(OBJS) ; do \
- $(call ARCHIVE, $@, $${obj}); \
+ $(call ARCHIVE, $(BIN), $${obj}); \
done ; )
@touch .built
-
-.built: $(BIN)
context: