1 # -----------------------------------------------------------------------------
3 # (c) 2009 The University of Glasgow
5 # This file is part of the GHC build system.
7 # To understand how the build system works and how to modify it, see
8 # http://hackage.haskell.org/trac/ghc/wiki/Building/Architecture
9 # http://hackage.haskell.org/trac/ghc/wiki/Building/Modifying
11 # -----------------------------------------------------------------------------
20 $(call clean-target,$1,docbook,$1/$2 $1/$2.pdf $1/$2.ps)
22 # empty "all_$1" target just in case we're not building docs at all
23 $(call all-target,$1,)
27 ifeq "$$(BUILD_DOCBOOK_HTML)" "YES"
28 $(call all-target,$1,html_$1)
30 html_$1 : $1/$2/index.html
32 $1/$2/index.html: $$($1_DOCBOOK_SOURCES)
33 "$$(RM)" $$(RM_OPTS) -r $$(dir $$@)
34 "$$(XSLTPROC)" --stringparam base.dir $$(dir $$@) \
35 --stringparam use.id.as.filename 1 \
36 --stringparam html.stylesheet fptools.css \
38 $$(XSLTPROC_LABEL_OPTS) $$(XSLTPROC_OPTS) \
39 $$(XSLTPROC_HTML_STYLESHEET) \
41 cp mk/fptools.css $$(dir $$@)
43 INSTALL_HTML_DOC_DIRS += $1/$2
46 @echo "*** HTML documentation is disabled; BUILD_DOCBOOK_HTML = NO"
51 ifeq "$$(BUILD_DOCBOOK_PS)" "YES"
52 $(call all-target,$1,ps_$1)
56 $1/$2.ps: $$($1_DOCBOOK_SOURCES)
57 "$$(DBLATEX)" $$(DBLATEX_OPTS) $1/$2.xml --ps -o $$@
59 INSTALL_DOCS += $1/$2.ps
62 @echo "*** PS documentation is disabled; BUILD_DOCBOOK_PS = NO"
66 ifeq "$$(BUILD_DOCBOOK_PDF)" "YES"
67 $(call all-target,$1,pdf_$1)
72 $1/$2.pdf: $$($1_DOCBOOK_SOURCES)
73 "$$(DBLATEX)" $$(DBLATEX_OPTS) $1/$2.xml --pdf -o $$@
75 INSTALL_DOCS += $1/$2.pdf
78 @echo "*** PDF documentation is disabled; BUILD_DOCBOOK_PDF = NO"