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/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/examples/pashello/Makefile b/apps/examples/pashello/Makefile
index 0473e3d64..042e96dd4 100644
--- a/apps/examples/pashello/Makefile
+++ b/apps/examples/pashello/Makefile
@@ -85,8 +85,17 @@ $(COBJS): %$(OBJEXT): %.c
$(call ARCHIVE, $(BIN), $(OBJS))
@touch .built
+ifeq ($(CONFIG_BUILD_KERNEL),y)
+$(INSTALL_DIR)/$(PROGNAME): $(OBJS)
+ @echo "LD: $<"
+ $(Q) $(LD) $(LDELFFLAGS) $(LDLIBPATH) -o $@ $(ARCHCRT0OBJ) $^ $(LDLIBS)
+
+install: $(INSTALL_DIR)/$(PROGNAME)
+
install:
+endif
+
context:
.depend: Makefile $(SRCS)