You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.7 KiB
72 lines
1.7 KiB
3 years ago
|
# build asciidoc books
|
||
|
|
||
|
ifdef BUILDDIR
|
||
|
DEST = -D "$(BUILDDIR)"
|
||
|
endif
|
||
|
|
||
|
ifdef DEBUG
|
||
|
VERBOSE = --verbose
|
||
|
endif
|
||
|
|
||
|
# avoid common DEBUG for the time being
|
||
|
-include $(HOME)/.mkimage/profiles.mk
|
||
|
|
||
|
PROJECT = mkimage-profiles
|
||
|
TOPLEVEL_DOC = $(PROJECT).asciidoc
|
||
|
RESOURCE_FILES = /etc/asciidoc
|
||
|
|
||
|
A2X = a2x
|
||
|
FXC = .fop.xconf
|
||
|
|
||
|
L = ru
|
||
|
DEPTH = 3
|
||
|
|
||
|
# common args (and the source file to process) come last
|
||
|
XSLT_ARGS = --stringparam toc.max.depth $(DEPTH)
|
||
|
COMMON_ARGS = -d book -a lang="$L" $(DEST) $(VERBOSE) $(TOPLEVEL_DOC)
|
||
|
HTML_ARGS = -a data-uri --icons -r $(RESOURCE_FILES) -r . \
|
||
|
--xsltproc-opts='$(XSLT_ARGS)' $(COMMON_ARGS)
|
||
|
|
||
|
# most convenient deliverables
|
||
|
DOCS_OUT = mkimage-profiles.7 $(PROJECT).pdf $(PROJECT).html docbook-xsl.css
|
||
|
|
||
|
# intermediate files
|
||
|
DOCS_TMP = $(PROJECT).fo $(PROJECT).xml
|
||
|
|
||
|
.PHONY: all prep chunked xhtml pdf clean
|
||
|
|
||
|
all: man chunked xhtml pdf
|
||
|
|
||
|
# NB: destination defined externally
|
||
|
publish: all
|
||
|
@if [ -n "$(DOCS_PUBLISH)" ]; then \
|
||
|
rsync -qa $(DOCS_OUT) "$(DOCS_PUBLISH)"; \
|
||
|
fi
|
||
|
|
||
|
prep:
|
||
|
@if [ -n "$(BUILDDIR)" ]; then mkdir -p "$(BUILDDIR)"; fi
|
||
|
|
||
|
man:
|
||
|
@VERSION="$$(sed -rn 's/^Version: ([0-9.]+).*$$/\1/p' \
|
||
|
../.gear/mkimage-profiles.spec)"; \
|
||
|
sed -e "s,@VERSION@,$$VERSION,g" \
|
||
|
< mkimage-profiles.7.in \
|
||
|
> mkimage-profiles.7
|
||
|
|
||
|
chunked xhtml: prep
|
||
|
@echo "** building $@ book"
|
||
|
@$(A2X) -f $@ $(HTML_ARGS)
|
||
|
|
||
|
pdf: prep
|
||
|
@echo "** building $@ book"
|
||
|
@$(A2X) --xsltproc-opts='$(XSLT_ARGS) \
|
||
|
--stringparam title.font.family "DejaVu Sans" \
|
||
|
--stringparam body.font.family "DejaVu Serif" \
|
||
|
--stringparam monospace.font.family "DejaVu Sans Mono"' \
|
||
|
--fop --fop-opts='-c $(FXC)' -f pdf $(COMMON_ARGS)
|
||
|
|
||
|
clean:
|
||
|
@echo "** cleaning up"
|
||
|
@if [ -d "$(BUILDDIR)" ]; then cd "$(BUILDDIR)"; fi; \
|
||
|
rm -rf $(DOCS_OUT) $(DOCS_TMP) $(PROJECT).chunked/
|