aboutsummaryrefslogtreecommitdiff
path: root/docs/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/makefile')
-rw-r--r--docs/makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/makefile b/docs/makefile
index 385ed09..cccc231 100644
--- a/docs/makefile
+++ b/docs/makefile
@@ -1,13 +1,16 @@
all: plan.pdf
-include font.mk
+# include font.mk
# PDFDEPS += $(ALL_FONTS)
PDFDEPS += ./theme.yml
+ASCIIDOCTOR_ARGS += --require asciidoctor-bibtex
+ASCIIDOCTOR_ARGS += --require asciidoctor-pdf
ASCIIDOCTOR_ARGS += --backend pdf
ASCIIDOCTOR_ARGS += --attribute pdf-theme=./theme.yml
# ASCIIDOCTOR_ARGS += --attribute pdf-fontsdir=./res/font
+ASCIIDOCTOR_ARGS += --attribute bibtex-file=./share/refs.bib
%.pdf: %.adoc $(PDFDEPS)
- asciidoctor --require asciidoctor-pdf $(ASCIIDOCTOR_ARGS) $<
+ asciidoctor $(ASCIIDOCTOR_ARGS) $<