Files
the-monospace-web-pandoc/Makefile
2025-01-25 14:33:57 +01:00

12 lines
260 B
Makefile

VERSION=$(shell jq -r .version package.json)
all: index.html
clean:
rm -f index.html
index.html: index.md template.html Makefile
pandoc --toc -s --css reset.css --css index.css -Vversion=v$(VERSION) -i $< -o $@ --template=template.html
.PHONY: all clean