all: _build/index.html _build: tools/highlight.py mkdir -p _build && \ find . -mindepth 2 -type f -not -path './.git/*' -not -path './doc/*' -not -path './_build/*' | cut -d / -f 2- | parallel 'tools/highlight.py {}' _build/index.html: tools/listdir.py | _build pushd _build && find . -name '*.html' | cut -d / -f 2- | sort | ../tools/listdir.py src/ > index.html .PHONY: clean clean: $(RM) -r _build