From beb70efffcde9f35e3ab80c748c38041677d1ac0 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 10:42:03 -0600 Subject: Add program installation for CONFIG_BUILD_KERNEL in all Makefiles that build a main() --- apps/system/ramtest/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'apps/system/ramtest/Makefile') diff --git a/apps/system/ramtest/Makefile b/apps/system/ramtest/Makefile index 997c8ea8f..0471dd25c 100644 --- a/apps/system/ramtest/Makefile +++ b/apps/system/ramtest/Makefile @@ -84,8 +84,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) -- cgit v1.2.3