diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-02-26 17:27:35 +0900 |
---|---|---|
committer | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2019-04-09 14:59:46 +0900 |
commit | 52373e42e7b11961fcff298822d5ba025e0dedfd (patch) | |
tree | b21626ed05f67eeadcd2f487b6c76daf87805500 /Makefile | |
parent | 0562110e003c7db39382d790866bb5565604c8ea (diff) |
html: add team menu
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -2,11 +2,12 @@ CMD = ./scripts/html.py ALLYAML = $(shell ./scripts/find.py -a) FOLDERS = $(subst ./,,$(shell cd ./projects; find -type d)) DST = $(subst yaml,html,$(subst projects,html,${SRC})) +TEAM = Core IO MM MEMBER = BSP Geert Jacopo Kaneko Kieran Laurent Magnus Marek Morimoto Niklas Shimoda Simon Ulrich Wolfram STATUS = New Active Blocked Paused Done Abandoned SPF = menu subindex body -all: summary spf files index.html members statuss html/bsp.html +all: summary spf files index.html members statuss teams html/bsp.html summary: @for folder in ${FOLDERS}; do\ @@ -55,6 +56,14 @@ statuss: status: @make -s SRC="$(shell ./scripts/find.py -s ${STA})" DST=./html/${STA}.html TGT="status ${STA}" ./html/${STA}.html +teams: + @for team in ${TEAM}; do\ + make -s TM=$${team} team;\ + done; + +team: + @make -s SRC="$(shell ./scripts/find.py -t ${TM})" DST=./html/${TM}.html TGT="team ${TM}" ./html/${TM}.html + ${DST}: ${SRC} ${CMD} @echo "${DST}" ${CMD} ${TGT} ${SRC} > $@ |