1 ## Process this file with automake to produce Makefile.in
3 # We require automake 1.6 at least.
6 # The name of the module, e.g. 'glib'.
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.
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
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
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
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
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
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) \
77 -I $(top_srcdir)/random \
78 -I $(top_srcdir)/socket \
81 GTKDOC_LIBS= $(top_builddir)/agent/libagent.la $(GLIB_LIBS) $(top_builddir)/stun/libstun.la
84 # This includes the standard gtk-doc make rules, copied by gtkdocize.
85 include $(top_srcdir)/gtk-doc.make
87 # Other files to distribute
88 # e.g. EXTRA_DIST += version.xml.in
91 # Files not to distribute
92 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
93 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
96 # Comment this out if you want your docs-status tested during 'make check'
97 #TESTS = $(GTKDOC_CHECK)