summaryrefslogtreecommitdiff
path: root/latex/Makefile
blob: 590d33d3fb8e1ec2c9f77368788128a7833ce64b (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 ../static/`dirname $$file` ; \
		cp -v $$file ../static/`dirname $$file`/ ; \
	done

know/concept/%/index.html: know/concept/%/source.md template.html main.css
	$(CONV) $(CONVFLAGS) $< -o $@