summaryrefslogtreecommitdiff
path: root/apps/system/install
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 10:42:03 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 10:42:03 -0600
commitbeb70efffcde9f35e3ab80c748c38041677d1ac0 (patch)
tree9b01e6cd3afec91d278316c9a149f34e8e0e00d0 /apps/system/install
parent8aabf57b45b523cbcc96c979826a8f809cd7bd73 (diff)
downloadnuttx-beb70efffcde9f35e3ab80c748c38041677d1ac0.tar.gz
nuttx-beb70efffcde9f35e3ab80c748c38041677d1ac0.tar.bz2
nuttx-beb70efffcde9f35e3ab80c748c38041677d1ac0.zip
Add program installation for CONFIG_BUILD_KERNEL in all Makefiles that build a main()
Diffstat (limited to 'apps/system/install')
-rw-r--r--apps/system/install/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/system/install/Makefile b/apps/system/install/Makefile
index 9ff931e22..55e51398c 100644
--- a/apps/system/install/Makefile
+++ b/apps/system/install/Makefile
@@ -91,8 +91,17 @@ $(COBJS): %$(OBJEXT): %.c
$(call ARCHIVE, $(BIN), $(OBJS))
$(Q) 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
+
# Register application
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)