summaryrefslogtreecommitdiff
path: root/latex/Makefile
blob: 69bf59faa27e825bb57495963c16f21cff9109c9 (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/tex-svg.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 $@