17375b2eed
OK, first up, SOMEBODY *cough*analphabet*cough* screwed up the docs by making them all use the wrong heading level. Not cool, guy. I had to change them so they would compile right. But anyway, now the docs will build into sexy-looking HTML and will shortly be hosted on marktraceur.info. Fixed the makefile to work properly. Run: * `make clean` for removing old doc-build(s) * `make docs` for running new doc-build(s)
13 lines
363 B
Makefile
13 lines
363 B
Makefile
doc_dirs = doc $(wildcard doc/*/)
|
|
outdoc_dirs = out $(addprefix out/,$(doc_dirs))
|
|
doc_sources = $(wildcard doc/*/*.md) $(wildcard doc/*.md)
|
|
outdoc_files = $(addprefix out/,$(doc_sources:.md=.html))
|
|
|
|
docs: $(outdoc_files)
|
|
|
|
out/doc/%.html: doc/%.md
|
|
mkdir -p $(@D)
|
|
node tools/doc/generate.js --format=html --template=doc/template.html $< > $@
|
|
|
|
clean:
|
|
rm -rf out/
|