mirror of
https://github.com/frainfreeze/the-monospace-web-pandoc
synced 2025-12-29 18:49:50 -08:00
13 lines
321 B
Makefile
13 lines
321 B
Makefile
VERSION=$(shell jq -r .version package.json)
|
|
DATE=$(shell date +%F)
|
|
|
|
all: index.html
|
|
|
|
clean:
|
|
rm -f index.html
|
|
|
|
index.html: demo/index.md demo/template.html Makefile
|
|
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -Vdate=$(DATE) -i $< -o $@ --template=demo/template.html
|
|
|
|
.PHONY: all clean
|