source: chapter06/automake.xml@ f8756ab

7.5-systemd 7.6-systemd 7.7-systemd 7.8-systemd 7.9-systemd
Last change on this file since f8756ab was 94c0cb3, checked in by Krejzi <krejzi@…>, 10 years ago

Merge lfs svn book and update to libcap-2.24

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10439 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 8.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-system-automake" role="wrap">
9 <?dbhtml filename="automake.html"?>
10
11 <sect1info condition="script">
12 <productname>automake</productname>
13 <productnumber>&automake-version;</productnumber>
14 <address>&automake-url;</address>
15 </sect1info>
16
17 <title>Automake-&automake-version;</title>
18
19 <indexterm zone="ch-system-automake">
20 <primary sortas="a-Automake">Automake</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Automake package contains programs for generating Makefiles for use
27 with Autoconf.</para>
28
29 <segmentedlist>
30 <segtitle>&buildtime;</segtitle>
31 <segtitle>&diskspace;</segtitle>
32
33 <seglistitem>
34 <seg>&automake-ch6-sbu;</seg>
35 <seg>&automake-ch6-du;</seg>
36 </seglistitem>
37 </segmentedlist>
38
39 </sect2>
40
41 <sect2 role="installation">
42 <title>Installation of Automake</title>
43
44 <para>Prepare Automake for compilation:</para>
45
46<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/automake-&automake-version;</userinput></screen>
47
48 <para>Compile the package:</para>
49
50<screen><userinput remap="make">make</userinput></screen>
51
52 <note><para>The tests take a very long time: over 30 SBUs.</para></note>
53
54 <para>To test the results, issue:</para>
55
56<screen><userinput remap="test">make check</userinput></screen>
57
58 <para>Install the package:</para>
59
60<screen><userinput remap="install">make install</userinput></screen>
61
62 </sect2>
63
64
65 <sect2 id="contents-automake" role="content">
66 <title>Contents of Automake</title>
67
68 <segmentedlist>
69 <segtitle>Installed programs</segtitle>
70 <segtitle>Installed directories</segtitle>
71
72 <seglistitem>
73 <seg>acinstall, aclocal, aclocal-&am-minor-version;, automake,
74 automake-&am-minor-version;, compile, config.guess, config.sub,
75 depcomp, install-sh, mdate-sh, missing, mkinstalldirs,
76 py-compile, and ylwrap</seg>
77 <seg>/usr/share/aclocal-&am-minor-version;, /usr/share/automake-&am-minor-version;,
78 /usr/share/doc/automake-&automake-version;</seg>
79 </seglistitem>
80 </segmentedlist>
81
82 <variablelist>
83 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
84 <?dbfo list-presentation="list"?>
85 <?dbhtml list-presentation="table"?>
86
87 <varlistentry id="acinstall">
88 <term><command>acinstall</command></term>
89 <listitem>
90 <para>A script that installs aclocal-style M4 files</para>
91 <indexterm zone="ch-system-automake acinstall">
92 <primary sortas="b-acinstall">acinstall</primary>
93 </indexterm>
94 </listitem>
95 </varlistentry>
96
97 <varlistentry id="aclocal">
98 <term><command>aclocal</command></term>
99 <listitem>
100 <para>Generates <filename>aclocal.m4</filename> files based on the
101 contents of <filename>configure.in</filename> files</para>
102 <indexterm zone="ch-system-automake aclocal">
103 <primary sortas="b-aclocal">aclocal</primary>
104 </indexterm>
105 </listitem>
106 </varlistentry>
107
108 <varlistentry id="aclocalversion">
109 <term><command>aclocal-&am-minor-version;</command></term>
110 <listitem>
111 <para>A hard link to <command>aclocal</command></para>
112 <indexterm zone="ch-system-automake aclocalversion">
113 <primary sortas="b-aclocal-&am-minor-version;">aclocal-&am-minor-version;</primary>
114 </indexterm>
115 </listitem>
116 </varlistentry>
117
118 <varlistentry id="automake">
119 <term><command>automake</command></term>
120 <listitem>
121 <para>A tool for automatically generating
122 <filename>Makefile.in</filename> files from
123 <filename>Makefile.am</filename> files. To create all the
124 <filename>Makefile.in</filename> files for a package, run this program
125 in the top-level directory. By scanning the
126 <filename>configure.in</filename> file, it automatically finds each
127 appropriate <filename>Makefile.am</filename> file and generates the
128 corresponding <filename>Makefile.in</filename> file</para>
129 <indexterm zone="ch-system-automake automake">
130 <primary sortas="b-automake">automake</primary>
131 </indexterm>
132 </listitem>
133 </varlistentry>
134
135 <varlistentry id="automake-version">
136 <term><command>automake-&am-minor-version;</command></term>
137 <listitem>
138 <para>A hard link to <command>automake</command></para>
139 <indexterm zone="ch-system-automake automake-version">
140 <primary sortas="b-automake-&am-minor-version;">automake-&am-minor-version;</primary>
141 </indexterm>
142 </listitem>
143 </varlistentry>
144
145 <varlistentry id="compile">
146 <term><command>compile</command></term>
147 <listitem>
148 <para>A wrapper for compilers</para>
149 <indexterm zone="ch-system-automake compile">
150 <primary sortas="b-compile">compile</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 <varlistentry id="config.guess">
156 <term><command>config.guess</command></term>
157 <listitem>
158 <para>A script that attempts to guess the canonical triplet for
159 the given build, host, or target architecture</para>
160 <indexterm zone="ch-system-automake config.guess">
161 <primary sortas="b-config.guess">config.guess</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165
166 <varlistentry id="config.sub">
167 <term><command>config.sub</command></term>
168 <listitem>
169 <para>A configuration validation subroutine script</para>
170 <indexterm zone="ch-system-automake config.sub">
171 <primary sortas="b-config.sub">config.sub</primary>
172 </indexterm>
173 </listitem>
174 </varlistentry>
175
176 <varlistentry id="depcomp">
177 <term><command>depcomp</command></term>
178 <listitem>
179 <para>A script for compiling a program so that dependency information
180 is generated in addition to the desired output</para>
181 <indexterm zone="ch-system-automake depcomp">
182 <primary sortas="b-depcomp">depcomp</primary>
183 </indexterm>
184 </listitem>
185 </varlistentry>
186
187 <varlistentry id="install-sh">
188 <term><command>install-sh</command></term>
189 <listitem>
190 <para>A script that installs a program, script, or data file</para>
191 <indexterm zone="ch-system-automake install-sh">
192 <primary sortas="b-install-sh">install-sh</primary>
193 </indexterm>
194 </listitem>
195 </varlistentry>
196
197 <varlistentry id="mdate-sh">
198 <term><command>mdate-sh</command></term>
199 <listitem>
200 <para>A script that prints the modification time of a file or
201 directory</para>
202 <indexterm zone="ch-system-automake mdate-sh">
203 <primary sortas="b-mdate-sh">mdate-sh</primary>
204 </indexterm>
205 </listitem>
206 </varlistentry>
207
208 <varlistentry id="missing">
209 <term><command>missing</command></term>
210 <listitem>
211 <para>A script acting as a common stub for missing GNU programs during
212 an installation</para>
213 <indexterm zone="ch-system-automake missing">
214 <primary sortas="b-missing">missing</primary>
215 </indexterm>
216 </listitem>
217 </varlistentry>
218
219 <varlistentry id="mkinstalldirs">
220 <term><command>mkinstalldirs</command></term>
221 <listitem>
222 <para>A script that creates a directory tree</para>
223 <indexterm zone="ch-system-automake mkinstalldirs">
224 <primary sortas="b-mkinstalldirs">mkinstalldirs</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry>
228
229 <varlistentry id="py-compile">
230 <term><command>py-compile</command></term>
231 <listitem>
232 <para>Compiles a Python program</para>
233 <indexterm zone="ch-system-automake py-compile">
234 <primary sortas="b-py-compile">py-compile</primary>
235 </indexterm>
236 </listitem>
237 </varlistentry>
238
239 <varlistentry id="ylwrap">
240 <term><command>ylwrap</command></term>
241 <listitem>
242 <para>A wrapper for <command>lex</command> and
243 <command>yacc</command></para>
244 <indexterm zone="ch-system-automake ylwrap">
245 <primary sortas="b-ylwrap">ylwrap</primary>
246 </indexterm>
247 </listitem>
248 </varlistentry>
249
250 </variablelist>
251
252 </sect2>
253
254</sect1>
Note: See TracBrowser for help on using the repository browser.