blob: 452bbd79a72dcb0b14d6d22d02997f8c6258684b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#
# Docbook processing
# TODO: might also generate a man page
#
DB_URI = http://docbook.sourceforge.net/release/xsl/current
if BUILD_HTML
nobase_dist_html_DATA = experiment-player.html \
images/data-window-new.png images/player-window-new.png \
images/quick-open-empty.png images/quick-open.png
endif
CLEANFILES = experiment-player.html html_titlepage.xsl
EXTRA_DIST = experiment-player.xml html_custom.xsl html_titlepage.spec.xml
experiment-player.html : experiment-player.xml html_custom.xsl html_titlepage.xsl
@XSLTPROC@ @XSLT_FLAGS@ -o $@ html_custom.xsl $<
html_titlepage.xsl : html_titlepage.spec.xml
@XSLTPROC@ @XSLT_FLAGS@ -o $@ $(DB_URI)/template/titlepage.xsl $<
#
# Doxygen processing (do not install or distribute)
#
if BUILD_DOXYGEN
noinst_DATA = doxygen/
endif
.PHONY: doxygen/
doxygen/ : Doxyfile
@DOXYGEN@ $<
clean-local:
-rm -rf doxygen/
|