diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-29 15:36:09 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-01-29 15:57:03 +0900 |
commit | bbf17e594e7d9629016a63f5dd4fe004d17604d5 (patch) | |
tree | 4e065c65f07861846bc19d9147abca570be4ccca /Makefile | |
parent | 9c432b82dd0a450555eff122d448fa4976b2d2b1 (diff) |
myhtml: update to indicate each BSP upport status
Current periject indicates BSP upport status as all-in-one,
but it is not good to know *each* BSP.
This patch update for it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -9,18 +9,20 @@ PRODIR = $(shell find ./projects -type d) TEAM = Core IO MM MEMBER = BSP Geert Jacopo Kaneko Kieran Laurent Magnus Marek Morimoto Niklas Shimoda Simon Ulrich Wolfram NoAssignee STATUS = New Active Blocked Paused Done Abandoned -NOPARAM = menu subindex body index +NOPARAM = subindex body index +BSP = bsp39x all: wiki/Chat_log.wiki .git/hooks/pre-commit @make -s ${HTMLDIR} ${WIKIDIR} @make -s LISTS="${MEMBER}" TARGET=finds EXP1=member EXP2=-a loop @make -s LISTS="${STATUS}" TARGET=finds EXP1=status EXP2=-s loop @make -s LISTS="${TEAM}" TARGET=finds EXP1=team EXP2=-t loop + @make -s LISTS="${BSP}" TARGET=finds EXP1=bsp EXP2="-is -b" loop @make -s LISTS="${ALLYAML}" TARGET=file loop @make -s LISTS="${NOPARAM}" TARGET=noparam loop @make -s LISTS="${PROJECT}" TARGET=summary loop @make -s LISTS="${WIKI}" TARGET=wikis loop - @make -s bsp + @make -s menu @make -s index.html .git/hooks/pre-commit: @@ -41,7 +43,7 @@ ${FILE}: ${HTML_OPTION2} ${HTML} ${HTML} ${HTML_OPTION1} ${HTML_OPTION2} > $@ loop: for list in ${LISTS}; do\ - make PARAM=$${list} EXP1=${EXP1} EXP2=${EXP2} ${TARGET};\ + make PARAM=$${list} EXP1=${EXP1} EXP2="${EXP2}" ${TARGET};\ done; basic: @@ -52,12 +54,12 @@ file: make HTML_OPTION1=task HTML_OPTION2=${PARAM} FILE=$(subst yaml,html,$(subst projects,html,${PARAM})) basic noparam: make HTML_OPTION1=${PARAM} HTML_OPTION2="${PRODIR}" FILE=html/${PARAM}.html basic -bsp: - make HTML_OPTION1=bsp HTML_OPTION2="${ALLYAML}" FILE=html/bsp.html basic finds: make HTML_OPTION1="${EXP1} ${PARAM}" HTML_OPTION2="$(shell ${FIND} ${EXP2} ${PARAM})" FILE=html/${PARAM}.html basic wikis: make HTML_OPTION1=wiki HTML_OPTION2="${PARAM}" FILE=$(addprefix html/,$(subst .wiki,.html,${PARAM})) basic +menu: + make HTML_OPTION1="menu ${BSP}" HTML_OPTION2="" FILE=html/menu.html basic clean: @rm -fr html @rm -fr *.html |