aboutsummaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2023-05-10 13:24:46 +0200
committerlonkaars <loek@pipeframe.xyz>2023-05-10 13:24:46 +0200
commit2f8d3ac42bb0b5bf644af27b59ee8b02dbb50397 (patch)
tree0033bd0a963340ded108444b4f54aef02165e2e2 /doc/makefile
parenta64f19ad176b83d1a1cd9736dd4e7f468c9ed14d (diff)
add docs folder with pandoc/latex document template
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
+