15 lines
261 B
Makefile
15 lines
261 B
Makefile
.SUFFIXES: .md .html
|
|
|
|
MD = index.md contact.md about.md 404.md thanks.md
|
|
HTML = $(MD:.md=.html)
|
|
COPY = form.html style.css script.js logo.webp hamburger.svg
|
|
|
|
all: static $(MD)
|
|
copy $(COPY) static
|
|
|
|
static:
|
|
mkdir -p static
|
|
|
|
.md.html:
|
|
./md.py gen/$< >static/$@
|