12de346ddd
Thanks torabora@ for the tip along with reference to his http://altlinux.org/asciidoc page.
32 lines
838 B
Makefile
32 lines
838 B
Makefile
PROJECT = mkimage-profiles
|
|
TOPLEVEL_DOC = mkimage-profiles.asciidoc
|
|
HTMLPAGE = $(TOPLEVEL_DOC:.asciidoc=.html)
|
|
RESOURCE_FILES = /etc/asciidoc
|
|
|
|
A2X = a2x
|
|
|
|
.PHONY: all clean
|
|
|
|
all: $(HTMLPAGE)
|
|
|
|
%.html: %.asciidoc
|
|
$(A2X) -d book -f xhtml -a lang=ru \
|
|
--icons -r $(RESOURCE_FILES) -r . \
|
|
--xsltproc-opts='--stringparam toc.max.depth 3' \
|
|
$<
|
|
|
|
chunked: $(TOPLEVEL_DOC)
|
|
$(A2X) -d book -f chunked -a lang=ru \
|
|
--icons -r $(RESOURCE_FILES) -r . \
|
|
--xsltproc-opts='--stringparam toc.max.depth 3' \
|
|
$<
|
|
|
|
pdf: $(TOPLEVEL_DOC)
|
|
$(A2X) --verbose --fop --fop-opts='-c .fop.xconf' -d book -f pdf -a lang=ru \
|
|
--xsltproc-opts=' \
|
|
--stringparam toc.max.depth 3 \
|
|
--stringparam title.font.family "DejaVu Sans" \
|
|
--stringparam body.font.family "DejaVu Serif" \
|
|
--stringparam monospace.font.family "DejaVu Sans Mono"' \
|
|
$<
|