Add patch that contain Mali fixes.
[deb_xorg-server.git] / devbook.am
1 #
2 # Generate output formats for a single DocBook/XML with/without chapters
3 #
4 # Variables set by the calling Makefile:
5 # noinst_DATA: developers docs are not installed
6 # docbook: the main DocBook/XML file, no chapters, appendix or image files
7 # chapters: all files pulled in by an XInclude statement and images.
8 #
9
10 #
11 # This makefile is intended for Developers Documentation and is not installed.
12 # Do not use for Users docs or Specs which need to be installed and require olink support
13 # Refer to http://www.x.org/releases/X11R7.6/doc/xorg-docs/ReleaseNotes.html#id2584393
14 # for an explanation on documents classification.
15 #
16
17 # Developers documnetation is not installed
18 noinst_DATA =
19
20 # DocBook/XML file with chapters, appendix and images it includes
21 dist_noinst_DATA = $(docbook) $(chapters)
22
23 if HAVE_STYLESHEETS
24
25 XMLTO_HTML_FLAGS = \
26 --searchpath "$(XORG_SGML_PATH)/X11" \
27 --searchpath "$(abs_top_builddir)" \
28 -x $(STYLESHEET_SRCDIR)/xorg-xhtml.xsl
29
30 noinst_DATA += $(docbook:.xml=.html)
31 %.html: %.xml $(chapters)
32 $(AM_V_GEN)$(XMLTO) $(XMLTO_HTML_FLAGS) xhtml-nochunks $<
33
34 if HAVE_XMLTO_TEXT
35 noinst_DATA += $(docbook:.xml=.txt)
36 %.txt: %.xml $(chapters)
37 $(AM_V_GEN)$(XMLTO) $(XMLTO_HTML_FLAGS) txt $<
38 endif HAVE_XMLTO_TEXT
39
40 if HAVE_FOP
41 XMLTO_FO_FLAGS = \
42 --searchpath "$(XORG_SGML_PATH)/X11" \
43 --searchpath "$(abs_top_builddir)" \
44 --stringparam img.src.path=$(abs_builddir)/ \
45 -x $(STYLESHEET_SRCDIR)/xorg-fo.xsl
46
47 noinst_DATA += $(docbook:.xml=.pdf) $(docbook:.xml=.ps)
48 %.pdf: %.xml $(chapters)
49 $(AM_V_GEN)$(XMLTO) $(XMLTO_FO_FLAGS) --with-fop pdf $<
50 %.ps: %.xml $(chapters)
51 $(AM_V_GEN)$(XMLTO) $(XMLTO_FO_FLAGS) --with-fop ps $<
52 endif HAVE_FOP
53 endif HAVE_STYLESHEETS
54
55 CLEANFILES = $(noinst_DATA)