Link manual building with GUPNP if available
[sipe-libnice.git] / docs / reference / libnice / Makefile.am
blobd4ca81b4e55125de7fb0d3f5387270ef65a291e5
1 ## Process this file with automake to produce Makefile.in
3 # We require automake 1.6 at least.
4 AUTOMAKE_OPTIONS = 1.6
6 # The name of the module, e.g. 'glib'.
7 DOC_MODULE=libnice
9 # The top-level SGML file. You can change this if you want to.
10 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
12 # The directory containing the source code. Relative to $(srcdir).
13 # gtk-doc will search all .c & .h files beneath here for inline comments
14 # documenting the functions and macros.
15 # e.g. DOC_SOURCE_DIR=../../../gtk
16 DOC_SOURCE_DIR=$(top_srcdir)
18 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
19 SCANGOBJ_OPTIONS=
21 # Extra options to supply to gtkdoc-scan.
22 # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
23 SCAN_OPTIONS=--rebuild-types
25 # Extra options to supply to gtkdoc-mkdb.
26 # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
27 MKDB_OPTIONS=--sgml-mode --output-format=xml
29 # Extra options to supply to gtkdoc-mktmpl
30 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
31 MKTMPL_OPTIONS=
33 # Extra options to supply to gtkdoc-fixref. Not normally needed.
34 # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
35 FIXXREF_OPTIONS=
37 # Used for dependencies. The docs will be rebuilt if any of these change.
38 # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
39 # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
40 HFILE_GLOB=$(DOC_SOURCE_DIR)/agent/agent.h $(DOC_SOURCE_DIR)/agent/address.h \
41         $(DOC_SOURCE_DIR)/agent/debug.h $(DOC_SOURCE_DIR)/agent/candidate.h \
42         $(DOC_SOURCE_DIR)/agent/interfaces.h \
43         $(DOC_SOURCE_DIR)/stun/stunagent.h  \
44         $(DOC_SOURCE_DIR)/stun/stunmessage.h 
45         $(DOC_SOURCE_DIR)/stun/debug.h \
46         $(DOC_SOURCE_DIR)/stun/usages/bind.h \
47         $(DOC_SOURCE_DIR)/stun/usages/ice.h \
48         $(DOC_SOURCE_DIR)/stun/usages/timer.h \
49         $(DOC_SOURCE_DIR)/stun/usages/turn.h
50 CFILE_GLOB=$(DOC_SOURCE_DIR)/agent/agent.c
52 # Header files to ignore when scanning.
53 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
54 IGNORE_HFILES= conncheck.h discovery.h stream.h gstnice.h gstnicesrc.h gstnicesink.h
56 # Images to copy into HTML directory.
57 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
58 HTML_IMAGES=
60 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
61 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
62 content_files=
64 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
65 # These files must be listed here *and* in content_files
66 # e.g. expand_content_files=running.sgml
67 expand_content_files=
69 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
70 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
71 # signals and properties.
72 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
73 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
74 AM_CFLAGS =  $(ERROR_CFLAGS) \
75         $(GLIB_CFLAGS) \
76         -I $(top_srcdir) \
77         -I $(top_srcdir)/random \
78         -I $(top_srcdir)/socket \
79         -I $(top_srcdir)/stun
81 GTKDOC_LIBS= $(top_builddir)/agent/libagent.la $(GLIB_LIBS) $(top_builddir)/stun/libstun.la \
82          $(GUPNP_LIBS)
85 # This includes the standard gtk-doc make rules, copied by gtkdocize.
86 include $(top_srcdir)/gtk-doc.make
88 # Other files to distribute
89 # e.g. EXTRA_DIST += version.xml.in
90 EXTRA_DIST +=
92 # Files not to distribute
93 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
94 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
95 #DISTCLEANFILES +=
97 # Comment this out if you want your docs-status tested during 'make check'
98 #TESTS = $(GTKDOC_CHECK)