summaryrefslogtreecommitdiff
path: root/apps/examples/ftpc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/ftpc/Makefile')
-rw-r--r--apps/examples/ftpc/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/ftpc/Makefile b/apps/examples/ftpc/Makefile
index ca630c814..96ed512e2 100644
--- a/apps/examples/ftpc/Makefile
+++ b/apps/examples/ftpc/Makefile
@@ -74,7 +74,7 @@ $(COBJS): %$(OBJEXT): %.c
$(call COMPILE, $<, $@)
.built: $(OBJS)
- $(call ARCHIVE, $@, "$(OBJS)")
+ $(call ARCHIVE, $(BIN), "$(OBJS)")
@touch .built
# Register application
@@ -88,7 +88,7 @@ context: .context
# Create dependencies
.depend: Makefile $(SRCS)
- @$(MKDEP) $(ROOTDEPPATH) $(CC) -- $(CFLAGS) -- $(SRCS) >Make.dep
+ @$(MKDEP) $(ROOTDEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
@touch $@
depend: .depend