nexmon – Blame information for rev 1
?pathlinks?
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=glib |
||
7 | |||
8 | # The top-level SGML file. |
||
9 | DOC_MAIN_SGML_FILE=glib-docs.xml |
||
10 | |||
11 | # The directory containing the source code. Relative to $(srcdir) |
||
12 | DOC_SOURCE_DIR = \ |
||
13 | $(top_srcdir)/glib $(top_srcdir)/gmodule \ |
||
14 | $(top_builddir)/glib $(top_builddir)/gmodule |
||
15 | |||
16 | # Extra options to supply to gtkdoc-scan |
||
17 | SCAN_OPTIONS=--deprecated-guards="G_DISABLE_DEPRECATED" --ignore-decorators="GLIB_VAR|G_GNUC_WARN_UNUSED_RESULT" |
||
18 | |||
19 | # Extra options to supply to gtkdoc-mkdb |
||
20 | MKDB_OPTIONS=--output-format=xml --name-space=g |
||
21 | |||
22 | # Used for dependencies |
||
23 | HFILE_GLOB = \ |
||
24 | $(top_srcdir)/glib/*.h \ |
||
25 | $(top_srcdir)/gmodule/*.h \ |
||
26 | $(top_builddir)/glib/glibconfig.h |
||
27 | CFILE_GLOB= $(top_srcdir)/glib/*.c $(top_srcdir)/gmodule/*.c |
||
28 | |||
29 | # Ignore some private headers |
||
30 | IGNORE_HFILES = \ |
||
31 | gallocator.h \ |
||
32 | gdatasetprivate.h \ |
||
33 | glibintl.h \ |
||
34 | gbsearcharray.h \ |
||
35 | glib-private.h \ |
||
36 | gmoduleconf.h \ |
||
37 | gthreadprivate.h \ |
||
38 | gunibreak.h \ |
||
39 | gunicomp.h \ |
||
40 | gunidecomp.h \ |
||
41 | gunichartables.h \ |
||
42 | glib_probes.h \ |
||
43 | glib_trace.h \ |
||
44 | libcharset.h \ |
||
45 | gdebug.h \ |
||
46 | gprintfint.h \ |
||
47 | gmirroringtable.h \ |
||
48 | gscripttable.h \ |
||
49 | glib-mirroring-tab \ |
||
50 | gnulib \ |
||
51 | pcre \ |
||
52 | update-pcre \ |
||
53 | gbytesprivate.h \ |
||
54 | gvariant-internal.h \ |
||
55 | gvariant-serialiser.h \ |
||
56 | gvariant-core.h \ |
||
57 | gvarianttypeinfo.h \ |
||
58 | gwakeup.h \ |
||
59 | gtranslit-data.h \ |
||
60 | glib-init.h \ |
||
61 | gconstructor.h \ |
||
62 | valgrind.h |
||
63 | |||
64 | # Images to copy into HTML directory |
||
65 | HTML_IMAGES = \ |
||
66 | file-name-encodings.png \ |
||
67 | mainloop-states.gif \ |
||
68 | Sorted_binary_tree_breadth-first_traversal.svg \ |
||
69 | Sorted_binary_tree_inorder.svg \ |
||
70 | Sorted_binary_tree_postorder.svg \ |
||
71 | Sorted_binary_tree_preorder.svg |
||
72 | |||
73 | # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE) |
||
74 | content_files = \ |
||
75 | cross.xml \ |
||
76 | running.xml \ |
||
77 | building.xml \ |
||
78 | changes.xml \ |
||
79 | compiling.xml \ |
||
80 | programming.xml \ |
||
81 | resources.xml \ |
||
82 | regex-syntax.xml \ |
||
83 | version.xml \ |
||
84 | glib-gettextize.xml \ |
||
85 | gtester.xml \ |
||
86 | gtester-report.xml \ |
||
87 | gvariant-varargs.xml \ |
||
88 | gvariant-text.xml |
||
89 | |||
90 | expand_content_files = \ |
||
91 | compiling.xml |
||
92 | |||
93 | # Extra options to supply to gtkdoc-fixref |
||
94 | FIXXREF_OPTIONS=--extra-dir=$(srcdir)/../gobject/html --extra-dir=$(srcdir)/../gio/html |
||
95 | |||
96 | # include common portion ... |
||
97 | include $(top_srcdir)/gtk-doc.make |
||
98 | |||
99 | # Other files to distribute |
||
100 | EXTRA_DIST += \ |
||
101 | file-name-encodings.png \ |
||
102 | file-name-encodings.sxd \ |
||
103 | mainloop-states.fig \ |
||
104 | mainloop-states.png \ |
||
105 | mainloop-states.eps \ |
||
106 | Sorted_binary_tree_breadth-first_traversal.svg \ |
||
107 | Sorted_binary_tree_inorder.svg \ |
||
108 | Sorted_binary_tree_postorder.svg \ |
||
109 | Sorted_binary_tree_preorder.svg \ |
||
110 | version.xml.in |
||
111 | |||
112 | ######################################################################## |
||
113 | |||
114 | man_MANS = |
||
115 | |||
116 | if ENABLE_MAN |
||
117 | |||
118 | man_MANS += \ |
||
119 | glib-gettextize.1 \ |
||
120 | gtester.1 \ |
||
121 | gtester-report.1 |
||
122 | |||
123 | XSLTPROC_FLAGS = \ |
||
124 | --nonet \ |
||
125 | --stringparam man.output.quietly 1 \ |
||
126 | --stringparam funcsynopsis.style ansi \ |
||
127 | --stringparam man.th.extra1.suppress 1 \ |
||
128 | --stringparam man.authors.section.enabled 0 \ |
||
129 | --stringparam man.copyright.section.enabled 0 |
||
130 | |||
131 | .xml.1: |
||
132 | $(AM_V_GEN) $(XSLTPROC) $(XSLTPROC_FLAGS) http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< |
||
133 | |||
134 | endif |
||
135 | |||
136 | CLEANFILES ?= |
||
137 | CLEANFILES += $(man_MANS) |
||
138 | |||
139 | EXTRA_DIST += $(man_MANS) |
||
140 | |||
141 | dist-hook-local: all-local |
||
142 | |||
143 | glib-docs-clean: clean |
||
144 | cd $(srcdir) && rm -rf xml html |