Files
hrtime/Makefile
2026-01-04 04:08:32 -05:00

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/$@