mirror of
https://github.com/frainfreeze/the-monospace-web-pandoc
synced 2025-12-29 18:49:50 -08:00
11 lines
187 B
Makefile
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
|