blob: 0679c72003e868c8928330dfd9d3d9524e34f274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CONV = pandoc
CONVFLAGS = --from markdown --to html --standalone --template template.html --mathjax=/mathjax/custom-mathjax.js
know: $(shell find ./know/concept -mindepth 1 -maxdepth 1 -type d -printf "%p/index.html\\n")
for file in $^; do \
mkdir -p ../public/`dirname $$file` ; \
cp -v $$file ../public/`dirname $$file`/ ; \
done
know/concept/%/index.html: know/concept/%/source.md template.html main.css
$(CONV) $(CONVFLAGS) $< -o $@
|