Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / wearable / 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_MAJORMINOR@
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
29 # Extra options to supply to gtkdoc-mkdb.
30 MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files=parse
31
32 # Extra options to supply to gtkdoc-fixref.
33 FIXXREF_OPTIONS=--extra-dir=$(GLIB_PREFIX)/share/gtk-doc/html
34
35 # Used for dependencies.
36 HFILE_GLOB=$(top_srcdir)/gst/*.h
37 CFILE_GLOB=$(top_srcdir)/gst/*.c
38
39 # Header files to ignore when scanning. Use base file name, no paths
40 IGNORE_HFILES= \
41         gettext.h \
42         glib-compat-private.h \
43         glib-compat.h \
44         gst-i18n-app.h \
45         gst-i18n-lib.h \
46         gst_private.h \
47         gstelementdetails.h \
48         gstmarshal.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
73 GTKDOC_CC=$(LIBTOOL) --tag=CC --mode=compile $(CC)
74 GTKDOC_LD=$(LIBTOOL) --tag=CC --mode=link $(CC)
75
76 GTKDOC_EXTRA_ENVIRONMENT= \
77     GST_PLUGIN_SCANNER=$(top_builddir)/libs/gst/helpers/gst-plugin-scanner
78
79 # If you need to override some of the declarations, place them in this file
80 # and uncomment this line.
81 DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
82
83 include $(top_srcdir)/common/gtk-doc.mak
84
85 # gtk-doc.mak defines CLEANFILES
86 CLEANFILES += gst-universe.svg
87