Initial commit
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
.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/$@
|
||||
Reference in New Issue
Block a user