diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,11 +1,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})) 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 +all: summary spf files index.html members statuss html/bsp.html summary: @for folder in ${FOLDERS}; do\ @@ -31,7 +32,7 @@ index.html: ${CMD} @${CMD} index > $@ files: - @for file in $(shell ./scripts/find.py -a); do\ + @for file in ${ALLYAML}; do\ make -s SRC=$${file} file;\ done; @@ -58,6 +59,10 @@ ${DST}: ${SRC} ${CMD} @echo "${DST}" ${CMD} ${TGT} ${SRC} > $@ +html/bsp.html: ${ALLYAML} ${CMD} + @echo $@ + @${CMD} bsp ${ALLYAML} > $@ + clean: @rm -fr html @rm -fr *.html |