site/wiki/Makefile

24 lines
437 B
Makefile
Raw Normal View History

SRC_MD_FILES != find source -name '*.md'
DST_HTML_FILES := $(SRC_MD_FILES:source/%.md=%.html)
PANDOC != command -v pandoc 2> /dev/null
all: $(DST_HTML_FILES)
%.html: source/%.md
$(PANDOC) \
--template wiki.tmpl \
--lua-filter header-permalinks.lua \
--title-prefix "tilde.club wiki" \
2019-09-23 03:46:32 +00:00
--variable toc-title:"table of contents" \
--standalone \
--table-of-contents \
--output $@ \
$<
clean:
rm *.html
.PHONY: clean