Files
the-monospace-web-pandoc/Makefile
Oskar Wickström 50b890a226 init
2024-08-21 16:48:39 +02:00

11 lines
187 B
Makefile

all: index.html
clean:
rm -f index.html
index.html: index.md template.html Makefile
pandoc -s --css reset.css --css index.css -i $< -o $@ --template=template.html
.PHONY: all clean