This repository has been archived on 2024-01-11. You can view files and clone it, but cannot push or open issues or pull requests.
site/wiki/Makefile

16 lines
376 B
Makefile

# stolen from https://tildegit.org/ben/club-site/src/branch/master/Makefile
SRC_MD_FILES != find . -type f \( -name '*.md' ! -name 'README.md' \)
DST_HTML_FILES := $(SRC_MD_FILES:%.md=%.html)
all: $(DST_HTML_FILES)
%.html: %.md
$(info building $@)
@pandoc --template html.template -so $@ $<
clean:
$(info removing build artifacts)
@rm $(DST_HTML_FILES)
.PHONY: clean