summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-10-08 11:48:35 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-10-08 11:48:35 +0200
commitdb306559830ebd7734d30efb840d500d004e1d3f (patch)
tree32565e3a4c7e77497b0e92c7464307b1e67c9661 /target/Makefile
parent540785b648b5be9a2bf59fe1ae0ee7b7dc412bd0 (diff)
frosted: add support for stm32f429-discovery
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