mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
886f87ea63
Original commit message from CVS: Fix a few irregularities, to make things closer to the Gnome standard guidelines for SGML documentation. One change in particular is to change the book name for the manual from gstreamer to index; a change to the link to the manual on the website will thus be needed when the online version of the manual is next updated. These changes should make it possible to view the GStreamer documentation directly from SGML in Nautilus: anyone with a working copy of Nautilus should try this out and report ... ;-)
73 lines
2.1 KiB
Makefile
73 lines
2.1 KiB
Makefile
manualname = gstreamer-manual
|
|
htmlname = index.html
|
|
|
|
sgml_files = gstreamer-manual.sgml \
|
|
advanced.sgml \
|
|
bins.sgml \
|
|
buffers.sgml \
|
|
components.sgml \
|
|
quotes.sgml \
|
|
pads.sgml \
|
|
connections.sgml \
|
|
cothreads.sgml \
|
|
dynamic.sgml \
|
|
elements.sgml \
|
|
factories.sgml \
|
|
goals.sgml \
|
|
helloworld.sgml \
|
|
helloworld2.sgml \
|
|
intro.sgml \
|
|
motivation.sgml \
|
|
plugins.sgml \
|
|
programs.sgml \
|
|
queues.sgml \
|
|
states.sgml \
|
|
threads.sgml \
|
|
typedetection.sgml \
|
|
utility.sgml \
|
|
xml.sgml
|
|
|
|
fig_files = bin-element.fig \
|
|
bin-element-ghost.fig \
|
|
connected-elements.fig \
|
|
filter-element-multi.fig \
|
|
filter-element.fig \
|
|
hello-world.fig \
|
|
mime-world.fig \
|
|
queue.fig \
|
|
sink-element.fig \
|
|
src-element.fig \
|
|
state-diagram.fig \
|
|
thread.fig
|
|
|
|
eps_files = images/bin-element.eps \
|
|
images/bin-element-ghost.eps \
|
|
images/connected-elements.eps \
|
|
images/filter-element-multi.eps \
|
|
images/filter-element.eps \
|
|
images/hello-world.eps \
|
|
images/mime-world.eps \
|
|
images/queue.eps \
|
|
images/sink-element.eps \
|
|
images/src-element.eps \
|
|
images/state-diagram.eps \
|
|
images/thread.eps
|
|
|
|
png_files = images/bin-element.png \
|
|
images/bin-element-ghost.png \
|
|
images/connected-elements.png \
|
|
images/filter-element-multi.png \
|
|
images/filter-element.png \
|
|
images/hello-world.png \
|
|
images/mime-world.png \
|
|
images/queue.png \
|
|
images/sink-element.png \
|
|
images/src-element.png \
|
|
images/state-diagram.png \
|
|
images/thread.png
|
|
|
|
|
|
EXTRA_DIST = $(sgml_files) $(fig_files)
|
|
|
|
include $(srcdir)/../manuals.mak
|
|
|