improve build output

This commit is contained in:
Ben Harris 2019-09-24 11:07:46 -04:00
parent 33cc48da16
commit 9ef211d469
1 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,8 @@ PANDOC != command -v pandoc 2> /dev/null
all: $(DST_HTML_FILES)
%.html: source/%.md
$(PANDOC) \
@echo "building $@"
@$(PANDOC) \
--template wiki.tmpl \
--lua-filter header-permalinks.lua \
--title-prefix "tilde.club wiki" \
@ -17,7 +18,8 @@ all: $(DST_HTML_FILES)
$<
clean:
rm *.html
@echo "removing generated files"
@rm $(DST_HTML_FILES)
.PHONY: clean