clock: Add new signed time macro to the doc
[platform/upstream/gstreamer.git] / docs / gst / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # The name of the module, e.g. 'glib'.
4 # DOC_MODULE=gstreamer-@GST_API_VERSION@
5 DOC_MODULE=gstreamer
6
7 # don't want $(DOC_MODULE)-scan.c to be built with -Werror
8 ERROR_CFLAGS=
9
10 BUILT_SOURCES=gstreamer.types
11
12 # for upload-doc.mak
13 DOC=gstreamer
14 FORMATS=html
15 html: html-build.stamp
16 include $(top_srcdir)/common/upload-doc.mak
17
18 # The top-level SGML file. Change it if you want.
19 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
20
21 # The files containing the source code. Relative to $(top_srcdir).
22 # gtk-doc will search all .c & .h files beneath here for inline comments
23 # documenting functions and macros.
24 DOC_SOURCE_DIR = $(top_srcdir)/gst
25
26 # Extra options to supply to gtkdoc-scan.
27 SCAN_OPTIONS=--deprecated-guards="GST_DISABLE_DEPRECATED" \
28   --ignore-decorators='GST_EXPORT'
29
30 # Extra options to supply to gtkdoc-mkdb.
31 MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files=parse
32
33 # Extra options to supply to gtkdoc-fixref.
34 FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html
35
36 # Used for dependencies.
37 HFILE_GLOB=$(top_srcdir)/gst/*.h
38 CFILE_GLOB=$(top_srcdir)/gst/*.c
39
40 # Header files to ignore when scanning. Use base file name, no paths
41 IGNORE_HFILES= \
42         gettext.h \
43         glib-compat-private.h \
44         glib-compat.h \
45         gst-i18n-app.h \
46         gst-i18n-lib.h \
47         gst_private.h \
48         gstelementdetails.h \
49         gstmacros.h \
50         \
51         grammar.tab.h \
52         grammar.tab.pre.h \
53         math-compat.h \
54         types.h
55
56 gst-universe.svg: gst-universe.dot
57         -dot -Tsvg $< | sed 's/\(font-size:[0-9]*\.[0-9]*\);/\1px;/g' >$@
58
59 # Images to copy into HTML directory.
60 HTML_IMAGES =
61
62 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
63 content_files = building.xml running.xml gst-universe.svg
64
65 # Other files to distribute.
66 extra_files = gst-universe.dot
67
68 # CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
69 # contains GtkObjects/GObjects and you want to document signals and properties.
70 GTKDOC_CFLAGS = $(GST_OBJ_CFLAGS)
71 GTKDOC_LIBS = $(GST_OBJ_LIBS) \
72         $(top_builddir)/gst/libgstreamer-@GST_API_VERSION@.la \
73         $(top_builddir)/libs/gst/base/libgstbase-@GST_API_VERSION@.la \
74         $(top_builddir)/libs/gst/controller/libgstcontroller-@GST_API_VERSION@.la \
75         $(top_builddir)/libs/gst/net/libgstnet-@GST_API_VERSION@.la
76
77 GTKDOC_EXTRA_ENVIRONMENT= \
78     GST_PLUGIN_SCANNER_1_0=$(top_builddir)/libs/gst/helpers/gst-plugin-scanner
79
80 # If you need to override some of the declarations, place them in this file
81 # and uncomment this line.
82 DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
83
84 include $(top_srcdir)/common/gtk-doc.mak
85
86 # gtk-doc.mak defines CLEANFILES
87 CLEANFILES += gst-universe.svg
88