mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 02:03:04 +01:00
Fix [BUGID #593] The current manual build fails for printing formats which use latex as an intermediate format. This bug has been reported in multiple locations and I haven't found a solution posted to any of them. Using --with-dblatex uses dblatex to make the conversion and successfully generates the pdf. It adds a dependency on dblatex and its dependencies. Signed-off-by: Darren Hart <dvhart@linux.intel.com> CC: Joshua Lock <josh@linux.intel.com>
57 lines
1.8 KiB
Makefile
57 lines
1.8 KiB
Makefile
topdir = .
|
|
manual = $(topdir)/usermanual.xml
|
|
# types = pdf txt rtf ps xhtml html man tex texi dvi
|
|
# types = pdf txt
|
|
types = $(xmltotypes) $(htmltypes)
|
|
xmltotypes = pdf txt
|
|
htmltypes = html xhtml
|
|
htmlxsl = $(if $(filter $@,$(foreach type,$(htmltypes),$(type)-nochunks)),http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl,http://docbook.sourceforge.net/release/xsl/current/$@/chunk.xsl)
|
|
htmlcssfile = docbook.css
|
|
htmlcss = $(topdir)/html.css
|
|
# htmlcssfile =
|
|
# htmlcss =
|
|
cleanfiles = $(foreach i,$(types),$(topdir)/$(i))
|
|
|
|
ifdef DEBUG
|
|
define command
|
|
$(1)
|
|
endef
|
|
else
|
|
define command
|
|
@echo $(2) $(3) $(4)
|
|
@$(1) >/dev/null
|
|
endef
|
|
endif
|
|
|
|
all: $(types)
|
|
|
|
lint: $(manual) FORCE
|
|
$(call command,xmllint --xinclude --postvalid --noout $(manual),XMLLINT $(manual))
|
|
|
|
$(types) $(foreach type,$(htmltypes),$(type)-nochunks): lint FORCE
|
|
|
|
$(foreach type,$(htmltypes),$(type)-nochunks): $(if $(htmlcss),$(htmlcss)) $(manual)
|
|
@mkdir -p $@
|
|
ifdef htmlcss
|
|
$(call command,install -m 0644 $(htmlcss) $@/$(htmlcssfile),CP $(htmlcss) $@/$(htmlcssfile))
|
|
endif
|
|
$(call command,xsltproc --stringparam base.dir $@/ $(if $(htmlcssfile),--stringparam html.stylesheet $(htmlcssfile)) $(htmlxsl) $(manual) > $@/index.$(patsubst %-nochunks,%,$@),XSLTPROC $@ $(manual))
|
|
|
|
$(htmltypes): $(if $(htmlcss),$(htmlcss)) $(manual)
|
|
@mkdir -p $@
|
|
ifdef htmlcss
|
|
$(call command,install -m 0644 $(htmlcss) $@/$(htmlcssfile),CP $(htmlcss) $@/$(htmlcssfile))
|
|
endif
|
|
$(call command,xsltproc --stringparam base.dir $@/ $(if $(htmlcssfile),--stringparam html.stylesheet $(htmlcssfile)) $(htmlxsl) $(manual),XSLTPROC $@ $(manual))
|
|
|
|
$(xmltotypes): $(manual)
|
|
$(call command,xmlto --with-dblatex --extensions -o $(topdir)/$@ $@ $(manual),XMLTO $@ $(manual))
|
|
|
|
clean:
|
|
rm -rf $(cleanfiles)
|
|
|
|
$(foreach i,$(types) $(foreach type,$(htmltypes),$(type)-nochunks),clean-$(i)):
|
|
rm -rf $(patsubst clean-%,%,$@)
|
|
|
|
FORCE:
|