1htmldir = $(docdir)/en
2htmlfiles = download.xml    \
3            index.xml       \
4            manual.xml      \
5            plugins.xml     \
6            plugins-doc.xml \
7            profiles.xml    \
8            reference.xml
9html_DATA = $(htmlfiles:.xml=.html)
10
11.xml.html:
12	$(XSLTPROC_PROG) --nonet --xinclude -o $@ $(top_srcdir)/docs/tutorial/data/html.xsl $<
13
14pngdir = $(docdir)/en/shots
15png_DATA = shots/ogmrip-audio-options.png         \
16           shots/ogmrip-audio-options-small.png   \
17           shots/ogmrip-crop.png                  \
18           shots/ogmrip-crop-small.png            \
19	   shots/ogmrip-encoding-queue.png        \
20	   shots/ogmrip-encoding-queue-small.png  \
21           shots/ogmrip-load.png                  \
22           shots/ogmrip-load-small.png            \
23           shots/ogmrip-main.png                  \
24           shots/ogmrip-main-small.png            \
25           shots/ogmrip-options.png               \
26           shots/ogmrip-options-small.png         \
27           shots/ogmrip-pref-advanced.png         \
28           shots/ogmrip-pref-advanced-small.png   \
29           shots/ogmrip-pref-general.png          \
30           shots/ogmrip-pref-general-small.png    \
31           shots/ogmrip-profile-audio.png         \
32           shots/ogmrip-profile-audio-small.png   \
33           shots/ogmrip-profile-general.png       \
34           shots/ogmrip-profile-general-small.png \
35           shots/ogmrip-profiles.png              \
36           shots/ogmrip-profiles-small.png        \
37           shots/ogmrip-profile-subp.png          \
38           shots/ogmrip-profile-subp-small.png    \
39           shots/ogmrip-profile-video.png         \
40           shots/ogmrip-profile-video-small.png   \
41           shots/ogmrip-progress.png              \
42           shots/ogmrip-progress-small.png        \
43           shots/ogmrip-subp-options.png          \
44           shots/ogmrip-subp-options-small.png
45
46EXTRA_DIST = $(htmlfiles) \
47             sidebar.xml  \
48             $(png_DATA)
49
50CLEANFILES = $(html_DATA)
51
52