summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'target/Makefile')
-rw-r--r--target/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile
index a67fb62b7..99e0fff14 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -144,9 +144,9 @@ ifeq ($(ADK_TARGET_OS_FROSTED),y)
prepare: frosted-prepare
compile: frosted-compile
install: frosted-install
+targethelp: frosted-targethelp
endif
-
ifeq ($(ADK_TARGET_OS_LINUX),y)
prepare: $(ADK_TARGET_ARCH)-prepare
compile: $(ADK_TARGET_ARCH)-compile
@@ -193,10 +193,16 @@ endif
$(END_TRACE)
%-compile: %-prepare
+ $(START_TRACE) "target/$(patsubst %-compile,%,$@)-compile.. "
$(MAKE) -C $(patsubst %-compile,%,$@) compile
+ $(CMD_TRACE) " done"
+ $(END_TRACE)
%-install:
+ $(START_TRACE) "target/$(patsubst %-install,%,$@)-install.. "
$(MAKE) -C $(patsubst %-install,%,$@) install
+ $(CMD_TRACE) " done"
+ $(END_TRACE)
%-targethelp:
$(MAKE) -C $(patsubst %-targethelp,%,$@) targethelp