summaryrefslogtreecommitdiff
path: root/apps/examples/serloop
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/serloop')
-rw-r--r--apps/examples/serloop/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/apps/examples/serloop/Makefile b/apps/examples/serloop/Makefile
index 487a86242..0caefbef1 100644
--- a/apps/examples/serloop/Makefile
+++ b/apps/examples/serloop/Makefile
@@ -57,7 +57,7 @@ ROOTDEPPATH = --dep-path .
VPATH =
all: .built
-.PHONY: .built clean depend disclean
+.PHONY: clean depend distclean
$(AOBJS): %$(OBJEXT): %.S
$(call ASSEMBLE, $<, $@)
@@ -65,14 +65,12 @@ $(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:
.depend: Makefile $(SRCS)