You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
8 years ago
|
diff --git NuttX/apps/Makefile NuttX/apps/Makefile
|
||
|
index 4093b0e..3bdc36a 100644
|
||
|
--- NuttX/apps/Makefile
|
||
|
+++ NuttX/apps/Makefile
|
||
|
@@ -79,13 +79,13 @@ all: $(BIN)
|
||
|
.PHONY: import install dirlinks context context_serialize context_rest .depdirs preconfig depend clean distclean
|
||
|
|
||
|
define MAKE_template
|
||
|
- $(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||
|
+ +$(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||
|
|
||
|
endef
|
||
|
|
||
|
define SDIR_template
|
||
|
$(1)_$(2):
|
||
|
- $(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||
|
+ +$(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||
|
|
||
|
endef
|
||
|
|
||
|
@@ -108,7 +108,7 @@ install: $(BIN_DIR) .install
|
||
|
.import: $(BIN) install
|
||
|
|
||
|
import:
|
||
|
- $(Q) $(MAKE) .import TOPDIR="$(APPDIR)$(DELIM)import"
|
||
|
+ +$(Q) $(MAKE) .import TOPDIR="$(APPDIR)$(DELIM)import"
|
||
|
|
||
|
dirlinks:
|
||
|
$(Q) $(MAKE) -C platform dirlinks TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||
|
@@ -116,8 +116,8 @@ dirlinks:
|
||
|
context_rest: $(foreach SDIR, $(CONFIGURED_APPS), $(SDIR)_context)
|
||
|
|
||
|
context_serialize:
|
||
|
- $(Q) $(MAKE) -C builtin context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||
|
- $(Q) $(MAKE) context_rest
|
||
|
+ +$(Q) $(MAKE) -C builtin context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||
|
+ +$(Q) $(MAKE) context_rest
|
||
|
|
||
|
context: context_serialize
|
||
|
|