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 $(DOC_SOURCE_DIR)/agent/pseudotcp.h \
51 CFILE_GLOB=$(DOC_SOURCE_DIR)/agent/agent.c $(DOC_SOURCE_DIR)/agent/pseudotcp.c
53 # Header files to ignore when scanning.
54 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
55 IGNORE_HFILES= conncheck.h discovery.h stream.h gstnice.h gstnicesrc.h gstnicesink.h
57 # Images to copy into HTML directory.
58 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
61 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
62 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
65 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
66 # These files must be listed here *and* in content_files
67 # e.g. expand_content_files=running.sgml
70 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
71 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
72 # signals and properties.
73 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
74 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
75 AM_CFLAGS = $(ERROR_CFLAGS) \
78 -I $(top_srcdir)/random \
79 -I $(top_srcdir)/socket \
82 GTKDOC_LIBS= $(top_builddir)/agent/libagent.la $(GLIB_LIBS) $(top_builddir)/stun/libstun.la \
86 # This includes the standard gtk-doc make rules, copied by gtkdocize.
87 include $(top_srcdir)/gtk-doc.make
89 # Other files to distribute
90 # e.g. EXTRA_DIST += version.xml.in
93 # Files not to distribute
94 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
95 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
98 # Comment this out if you want your docs-status tested during 'make check'
99 #TESTS = $(GTKDOC_CHECK)