summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 10 insertions, 1 deletions
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} > $@