nexmon – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ## Process this file with automake to produce Makefile.in
2  
3 AUTOMAKE_OPTIONS = 1.6
4  
5 # The name of the module.
6 DOC_MODULE=gobject
7  
8 # The top-level SGML file.
9 DOC_MAIN_SGML_FILE=gobject-docs.xml
10  
11 # The directory containing the source code. Relative to $(srcdir)
12 DOC_SOURCE_DIR =$(top_srcdir)/gobject $(top_builddir)/gobject
13  
14 # Extra options to supply to gtkdoc-scan
15 SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED" \
16 --ignore-decorators="G_GNUC_INTERNAL|G_GNUC_WARN_UNUSED_RESULT"
17  
18 # Extra options to supply to gtkdoc-mkdb
19 MKDB_OPTIONS=--output-format=xml --name-space=g
20  
21 # Used for dependencies
22 HFILE_GLOB=$(top_srcdir)/gobject/*.h
23 CFILE_GLOB=$(top_srcdir)/gobject/*.c
24  
25 # Headers to ignore
26 IGNORE_HFILES = \
27 tests \
28 gatomicarray.h \
29 gobject_trace.h \
30 gtype-private.h
31  
32 # CFLAGS and LDFLAGS for compiling scan program. Only needed
33 # if $(DOC_MODULE).types is non-empty.
34 AM_CPPFLAGS = \
35 -I$(srcdir) \
36 $(gobject_INCLUDES) \
37 $(GLIB_DEBUG_FLAGS)
38  
39 GTKDOC_LIBS = \
40 $(top_builddir)/glib/libglib-2.0.la \
41 $(top_builddir)/gobject/libgobject-2.0.la
42  
43 # Images to copy into HTML directory
44 HTML_IMAGES = \
45 images/glue.png
46  
47 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE)
48 content_files = version.xml \
49 glib-mkenums.xml \
50 glib-genmarshal.xml \
51 gobject-query.xml \
52 tut_gobject.xml \
53 tut_gsignal.xml \
54 tut_gtype.xml \
55 tut_howto.xml \
56 tut_intro.xml \
57 tut_tools.xml
58  
59 # Extra options to supply to gtkdoc-fixref
60 FIXXREF_OPTIONS=--extra-dir=$(srcdir)/../glib/html
61  
62 include $(top_srcdir)/gtk-doc.make
63  
64 # Other files to distribute
65 EXTRA_DIST += \
66 gobject.cI \
67 version.xml.in
68  
69 ########################################################################
70  
71 man_MANS =
72  
73 if ENABLE_MAN
74  
75 man_MANS += \
76 glib-mkenums.1 \
77 glib-genmarshal.1 \
78 gobject-query.1
79  
80  
81 XSLTPROC_FLAGS = \
82 --nonet \
83 --stringparam man.output.quietly 1 \
84 --stringparam funcsynopsis.style ansi \
85 --stringparam man.th.extra1.suppress 1 \
86 --stringparam man.authors.section.enabled 0 \
87 --stringparam man.copyright.section.enabled 0
88  
89 .xml.1:
90 $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
91  
92 endif
93  
94 CLEANFILES ?=
95 CLEANFILES += $(man_MANS)
96  
97 EXTRA_DIST += $(man_MANS)
98  
99 dist-hook-local: all-local
100  
101 gobject-docs-clean: clean
102 cd $(srcdir) && rm -rf xml html