summaryrefslogtreecommitdiff
path: root/apps/examples/cpuhog
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/examples/cpuhog
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/examples/cpuhog')
-rw-r--r--apps/examples/cpuhog/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/examples/cpuhog/Makefile b/apps/examples/cpuhog/Makefile
index 751cc2fee..98ae1a21a 100644
--- a/apps/examples/cpuhog/Makefile
+++ b/apps/examples/cpuhog/Makefile
@@ -86,8 +86,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
+
ifeq ($(CONFIG_NSH_BUILTIN_APPS),y)
$(BUILTIN_REGISTRY)$(DELIM)$(APPNAME)_main.bdat: $(DEPCONFIG) Makefile
$(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main)