diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-18 13:42:02 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-05-18 13:42:23 +0200 |
commit | 021fd36e08840ebf9981d483cc8cac3cbb6217de (patch) | |
tree | b81353fbcb13337fe8e22bac3b7a00d05c417037 /target/Makefile | |
parent | b677bb107f14a301f5fe7cfb750b9e980c3fd9ab (diff) |
convert mips to use new targethelp make target, useful to just show the help text after building
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/Makefile b/target/Makefile index 22b989581..9f97d242a 100644 --- a/target/Makefile +++ b/target/Makefile @@ -85,6 +85,7 @@ endif prepare: $(ADK_TARGET_ARCH)-prepare compile: $(ADK_TARGET_ARCH)-compile image: $(ADK_TARGET_ARCH)-imageclean $(ADK_TARGET_ARCH)-imageinstall +targethelp: $(ADK_TARGET_ARCH)-targethelp install: $(ADK_TARGET_ARCH)-imageclean $(ADK_TARGET_ARCH)-install $(ADK_TARGET_ARCH)-imageinstall clean: $(ADK_TARGET_ARCH)-clean $(ADK_TARGET_ARCH)-imageclean @@ -106,6 +107,8 @@ clean: $(ADK_TARGET_ARCH)-clean $(ADK_TARGET_ARCH)-imageclean %-install: %-compile $(TRACE) target/$(patsubst %-install,%,$@)-install $(MAKE) -C $(patsubst %-install,%,$@) install +%-targethelp: + $(MAKE) -C $(patsubst %-targethelp,%,$@) targethelp %-imageinstall: %-imageprepare $(TRACE) target/$(patsubst %-imageinstall,%,$@)-imageinstall $(MAKE) -C $(patsubst %-imageinstall,%,$@) imageinstall |