From 52373e42e7b11961fcff298822d5ba025e0dedfd Mon Sep 17 00:00:00 2001 From: Kuninori Morimoto Date: Tue, 26 Feb 2019 17:27:35 +0900 Subject: html: add team menu Signed-off-by: Kuninori Morimoto --- Makefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 89e3d6f..fa49132 100644 --- a/Makefile +++ b/Makefile @@ -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} > $@ -- cgit v1.2.3