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