blob: 385ed094debf066e5b2f5c1c31fd40135f476060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: plan.pdf
include font.mk
# PDFDEPS += $(ALL_FONTS)
PDFDEPS += ./theme.yml
ASCIIDOCTOR_ARGS += --backend pdf
ASCIIDOCTOR_ARGS += --attribute pdf-theme=./theme.yml
# ASCIIDOCTOR_ARGS += --attribute pdf-fontsdir=./res/font
%.pdf: %.adoc $(PDFDEPS)
asciidoctor --require asciidoctor-pdf $(ASCIIDOCTOR_ARGS) $<
|