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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
htmldir = $(docdir)/en
htmlfiles = download.xml \
index.xml \
manual.xml \
plugins.xml \
plugins-doc.xml \
profiles.xml \
reference.xml
html_DATA = $(htmlfiles:.xml=.html)
.xml.html:
$(XSLTPROC_PROG) --nonet --xinclude -o $@ $(top_srcdir)/docs/tutorial/data/html.xsl $<
pngdir = $(docdir)/en/shots
png_DATA = shots/ogmrip-audio-options.png \
shots/ogmrip-audio-options-small.png \
shots/ogmrip-crop.png \
shots/ogmrip-crop-small.png \
shots/ogmrip-encoding-queue.png \
shots/ogmrip-encoding-queue-small.png \
shots/ogmrip-load.png \
shots/ogmrip-load-small.png \
shots/ogmrip-main.png \
shots/ogmrip-main-small.png \
shots/ogmrip-options.png \
shots/ogmrip-options-small.png \
shots/ogmrip-pref-advanced.png \
shots/ogmrip-pref-advanced-small.png \
shots/ogmrip-pref-general.png \
shots/ogmrip-pref-general-small.png \
shots/ogmrip-profile-audio.png \
shots/ogmrip-profile-audio-small.png \
shots/ogmrip-profile-general.png \
shots/ogmrip-profile-general-small.png \
shots/ogmrip-profiles.png \
shots/ogmrip-profiles-small.png \
shots/ogmrip-profile-subp.png \
shots/ogmrip-profile-subp-small.png \
shots/ogmrip-profile-video.png \
shots/ogmrip-profile-video-small.png \
shots/ogmrip-progress.png \
shots/ogmrip-progress-small.png \
shots/ogmrip-subp-options.png \
shots/ogmrip-subp-options-small.png
EXTRA_DIST = $(htmlfiles) \
sidebar.xml \
$(png_DATA)
CLEANFILES = $(html_DATA)
|