aboutsummaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/makefile b/doc/makefile
new file mode 100644
index 0000000..9f4dfa0
--- /dev/null
+++ b/doc/makefile
@@ -0,0 +1,20 @@
+.PHONY: all clean
+
+TARGET := $(patsubst %.md,%.pdf, $(wildcard *.md))
+
+all: $(TARGET)
+
+garbage = $1.aux $1.bbl $1.bcf $1.blg $1.fdb_latexmk $1.fls $1.log $1.out $1.run.xml $1.synctex.gz $1.toc $1.md.tex
+
+%.pdf: %.svg
+ rsvg-convert -f pdf -o $@ $<
+
+%.pdf: %.tex base.tex %.md.tex
+ latexmk $< -shell-escape -halt-on-error -lualatex -f -g
+
+%.md.tex: %.md
+ pandoc -t latex -o $@ $<
+
+clean:
+ $(RM) $(call garbage,research) research.pdf
+