-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.docbook
106 lines (81 loc) · 2.76 KB
/
main.docbook
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="utf-8" ?>
<!--
SPDX-FileCopyrightText: 2009- Diego Elio Pettenò
SPDX-License-Identifier: CC-BY-SA-3.0
-->
<book xmlns="http://docbook.org/ns/docbook"
xmlns:xl="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0" xml:lang="en"
xml:id="main">
<?dbhtml filename="index.html" ?>
<info>
<title>Autotools Mythbuster</title>
<author>
<personname>
<firstname>Diego Elio</firstname>
<othername>“Flameeyes”</othername>
<surname>Pettenò</surname>
</personname>
<email>[email protected]</email>
<contrib>Author and Publisher</contrib>
</author>
<author>
<personname>
<firstname>David J.</firstname>
<othername>“user99”</othername>
<surname>Cozatt</surname>
</personname>
<email>[email protected]</email>
<contrib>Miscellaneous Editing</contrib>
</author>
<date>2017-07</date>
<copyright>
<year>2009-2017</year>
<holder>Diego Elio Pettenò</holder>
</copyright>
<legalnotice>
<para>
This text is released under the CreativeCommons license Attribution-NonCommercial-ShareAlike
3.0 Unported. Please refer to <xref linkend="license" /> for the complete text of the
license.
</para>
</legalnotice>
<abstract>
<para>
Autotools Mythbuster is a no-nonsense guide to Autotools, written with the idea of providing
a full, integrated view of the tools in the GNU build chain: autoconf, automake, libtool,
pkg-config, and so on.
</para>
<para>
Instead of providing a full detailing of the workings of the components, which most
consumers are not interested on, this guide focuses on building useful, solid and
distribution-friendly packages, that developers can submit to distributions without having
to jump through hoops to get them accepted.
</para>
</abstract>
</info>
<xi:include parse="xml" href="chapters/preface.xmli" />
<xi:include parse="xml" href="chapters/autoconf.xmli" />
<xi:include parse="xml" href="chapters/automake.xmli" />
<xi:include parse="xml" href="chapters/libtool.xmli" />
<xi:include parse="xml" href="chapters/pkgconfig.xmli" />
<xi:include parse="xml" href="chapters/forwardporting.xmli" />
<xi:include parse="xml" href="chapters/glossary.xmli" />
<index xml:id="index">
<?dbhtml filename="terms-index.html" ?>
</index>
<xi:include parse="xml" href="chapters/whosafraid.xmli" />
<xi:include parse="xml" href="chapters/license.xmli" />
<xi:include parse="xml" href="chapters/furtherreadings.xmli" />
<xi:include parse="xml" href="chapters/examples.xmli" />
</book>
<!--
Local Variables:
mode: nxml
mode: auto-fill
mode: flyspell
ispell-local-dictionary: "british"
fill-column: 100
End:
-->